5
0
mirror of https://github.com/astral-sh/setup-uv.git synced 2025-12-15 11:07:14 +00:00

Always show prune cache output (#597)

This commit is contained in:
Kevin Stillhammer
2025-09-30 17:05:27 +02:00
committed by GitHub
parent 2841f9f5c1
commit 1433459b8b
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() {
const options = {
silent: !core.isDebug(),
silent: false,
};
const execArgs = ["cache", "prune", "--ci"];
core.info("Pruning cache...");

View File

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