From 175a036971d1e52dc83f284db9ca6b98986b9445 Mon Sep 17 00:00:00 2001 From: Gitea Actions Date: Wed, 30 Apr 2025 15:41:17 +0000 Subject: [PATCH] Deploy version 1.0.2 --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 6ae2505..160ef6e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -26382,10 +26382,10 @@ async function restoreCache(key) { const archiveSize = fs5.statSync(zstPath).size; await extractCompressedTar(zstPath); const endTime = Date.now(); - const durationSeconds = (endTime - startTime) / 1e3; + const duration = endTime - startTime; core2.info( ` -\u2705 Cache restored successfully (${formatSize(archiveSize)}, ${formatDuration(durationSeconds)}) +\u2705 Cache restored successfully (${formatSize(archiveSize)}, ${formatDuration(duration)}) ` ); return true;