use sha256 instead of md5 for artifact v4 integrity hash

This commit is contained in:
Rob Herley
2023-10-16 16:20:24 +00:00
committed by GitHub
parent 494f12bcd9
commit 82474125c8
3 changed files with 11 additions and 11 deletions

View File

@@ -65,7 +65,7 @@ describe('upload-artifact', () => {
Promise.resolve({
isSuccess: true,
uploadSize: 1234,
md5Hash: 'test-md5-hash'
sha256Hash: 'test-sha256-hash'
})
)
jest
@@ -334,7 +334,7 @@ describe('upload-artifact', () => {
Promise.resolve({
isSuccess: true,
uploadSize: 1234,
md5Hash: 'test-md5-hash'
sha256Hash: 'test-sha256-hash'
})
)
jest