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;