mirror of
https://github.com/actions/download-artifact.git
synced 2025-08-21 08:00:18 +00:00
Remove last bit of test statement
This commit is contained in:
parent
44d505ca00
commit
ad3e0863e9
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -118786,7 +118786,7 @@ function run() {
|
|||||||
}
|
}
|
||||||
for (const dlPromise of downloadPromises) {
|
for (const dlPromise of downloadPromises) {
|
||||||
const outcome = yield dlPromise;
|
const outcome = yield dlPromise;
|
||||||
if (!outcome.digestMismatch) {
|
if (outcome.digestMismatch) {
|
||||||
core.warning(`Artifact digest validation failed. Please verify the integrity of the artifact.`);
|
core.warning(`Artifact digest validation failed. Please verify the integrity of the artifact.`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -129,7 +129,7 @@ async function run(): Promise<void> {
|
|||||||
|
|
||||||
for (const dlPromise of downloadPromises) {
|
for (const dlPromise of downloadPromises) {
|
||||||
const outcome = await dlPromise
|
const outcome = await dlPromise
|
||||||
if (!outcome.digestMismatch) {
|
if (outcome.digestMismatch) {
|
||||||
core.warning(
|
core.warning(
|
||||||
`Artifact digest validation failed. Please verify the integrity of the artifact.`
|
`Artifact digest validation failed. Please verify the integrity of the artifact.`
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user