fix: disable pip-audit progress spinner for CI
All checks were successful
PR Checks / 📏 Lint & Type Check (pull_request) Successful in 36s
PR Checks / 🧪 Tests (pull_request) Successful in 42s
PR Checks / 🔒 Security (pull_request) Successful in 54s

This commit is contained in:
root 2026-03-29 20:56:05 +00:00
parent 7def4e3abb
commit 38ca6011f8

View File

@ -113,7 +113,7 @@ jobs:
run: |
uv pip compile pyproject.toml --no-deps -o requirements-prod.txt
# pip-audit returns exit code 1 if vulnerabilities found, 0 if none
if uv run pip-audit --format json --output audit-results.json -r requirements-prod.txt; then
if uv run pip-audit --progress-spinner off --format json --output audit-results.json -r requirements-prod.txt; then
echo "✅ No vulnerabilities found"
rm -f audit-results.json
else