From d0cc045d04ccac9d8b7881df0226f9e82c39688e Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Tue, 30 Sep 2025 17:05:27 +0200 Subject: [PATCH] Always show prune cache output (#597) --- dist/save-cache/index.js | 2 +- src/save-cache.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/save-cache/index.js b/dist/save-cache/index.js index 84b6bed..552ac75 100644 --- a/dist/save-cache/index.js +++ b/dist/save-cache/index.js @@ -90077,7 +90077,7 @@ async function saveCache() { } async function pruneCache() { const options = { - silent: !core.isDebug(), + silent: false, }; const execArgs = ["cache", "prune", "--ci"]; core.info("Pruning cache..."); diff --git a/src/save-cache.ts b/src/save-cache.ts index d5b0ad5..caf0633 100644 --- a/src/save-cache.ts +++ b/src/save-cache.ts @@ -78,7 +78,7 @@ async function saveCache(): Promise { async function pruneCache(): Promise { const options: exec.ExecOptions = { - silent: !core.isDebug(), + silent: false, }; const execArgs = ["cache", "prune", "--ci"];