12
0
Fork 0
mirror of https://github.com/astral-sh/setup-uv.git synced 2026-07-03 10:59:31 +00:00

Wire all source files through logging module for quiet mode

Route all core.info and core.warning calls through the new
log.info/log.warning wrappers so quiet:true suppresses them.
The ##[add-matcher] directive in setup-uv.ts uses core.info
directly since it is a workflow command, not user-facing output.

Update action.yml, action-types.yml, and README.md with the
new quiet input (default: false).
This commit is contained in:
Kevin Stillhammer 2026-05-31 12:37:17 +02:00
parent c2514a526e
commit fd1049be7f
No known key found for this signature in database
17 changed files with 684 additions and 612 deletions

View file

@ -86,6 +86,9 @@ inputs:
add-problem-matchers:
description: "Add problem matchers."
default: "true"
quiet:
description: "Suppress info-level log output. Only warnings and errors are shown."
default: "false"
resolution-strategy:
description: "Resolution strategy to use when resolving version ranges. 'highest' uses the latest compatible version, 'lowest' uses the oldest compatible version."
default: "highest"