diff --git a/dist/index.js b/dist/index.js index 5c4d706..8c4fc64 100644 --- a/dist/index.js +++ b/dist/index.js @@ -118775,7 +118775,6 @@ function run() { core.info(`Preparing to download the following artifacts:`); artifacts.forEach(artifact => { core.info(`- ${artifact.name} (ID: ${artifact.id}, Size: ${artifact.size})`); - core.info(`Artifact digest: ${artifact.digest}`); }); } const downloadPromises = artifacts.map(artifact => artifact_1.default.downloadArtifact(artifact.id, Object.assign(Object.assign({}, options), { path: isSingleArtifactDownload || inputs.mergeMultiple @@ -118787,7 +118786,6 @@ function run() { } for (const dlPromise of downloadPromises) { const outcome = yield dlPromise; - core.info(`digest mismatch: ${outcome.digestMismatch}`); if (!outcome.digestMismatch) { core.warning(`Artifact digest validation failed. Please verify the integrity of the artifact.`); } diff --git a/src/download-artifact.ts b/src/download-artifact.ts index 00d190b..c8da268 100644 --- a/src/download-artifact.ts +++ b/src/download-artifact.ts @@ -108,11 +108,9 @@ async function run(): Promise { core.info( `- ${artifact.name} (ID: ${artifact.id}, Size: ${artifact.size})` ) - core.info(`Artifact digest: ${artifact.digest}`) }) } - const downloadPromises = artifacts.map(artifact => artifactClient.downloadArtifact(artifact.id, { ...options, @@ -131,7 +129,6 @@ async function run(): Promise { for (const dlPromise of downloadPromises) { const outcome = await dlPromise - core.info(`digest mismatch: ${outcome.digestMismatch}`) if (!outcome.digestMismatch) { core.warning( `Artifact digest validation failed. Please verify the integrity of the artifact.`