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:
committed by
GitHub
parent
2841f9f5c1
commit
1433459b8b
2
dist/save-cache/index.js
generated
vendored
2
dist/save-cache/index.js
generated
vendored
@@ -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...");
|
||||
|
||||
@@ -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"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user