Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,6 @@ async function run() {
core.info(
`Cache restored from key:${cacheEntry && cacheEntry.cacheKey}`
);

try {
core.info("Cache Checksum:");
await exec(`md5sum`, [`${archivePath}`]);
} catch (error) {
core.debug(`Failed to checkum with ${error}`);
}
} catch (error) {
core.warning(error.message);
utils.setCacheHitOutput(false);
Expand Down
7 changes: 0 additions & 7 deletions src/save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,6 @@ async function run() {

const stream = fs.createReadStream(archivePath);
await cacheHttpClient.saveCache(stream, primaryKey);

try {
core.info("Cache Checksum:");
await exec(`md5sum`, [`${archivePath}`]);
} catch (error) {
core.debug(`Failed to checkum with ${error}`);
}
} catch (error) {
core.warning(error.message);
}
Expand Down