Always show prune cache output

This commit is contained in:
Kevin Stillhammer 2025-09-30 17:00:53 +02:00
parent 2841f9f5c1
commit a2a3535243
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

2
dist/save-cache/index.js generated vendored
View file

@ -90077,7 +90077,7 @@ async function saveCache() {
} }
async function pruneCache() { async function pruneCache() {
const options = { const options = {
silent: !core.isDebug(), silent: false,
}; };
const execArgs = ["cache", "prune", "--ci"]; const execArgs = ["cache", "prune", "--ci"];
core.info("Pruning cache..."); core.info("Pruning cache...");

View file

@ -78,7 +78,7 @@ async function saveCache(): Promise<void> {
async function pruneCache(): Promise<void> { async function pruneCache(): Promise<void> {
const options: exec.ExecOptions = { const options: exec.ExecOptions = {
silent: !core.isDebug(), silent: false,
}; };
const execArgs = ["cache", "prune", "--ci"]; const execArgs = ["cache", "prune", "--ci"];