We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f2b3b commit a755027Copy full SHA for a755027
1 file changed
.unirtm.toml
@@ -71,7 +71,7 @@ fi
71
description = 'Python dependency audit'
72
run = '''
73
if [ -f "requirements.txt" ] || [ -f "pyproject.toml" ]; then
74
- pip-audit || true
+ pip-audit
75
else
76
echo "⏭️ Skipped (no python requirements)"
77
fi
@@ -81,7 +81,7 @@ fi
81
description = 'Go dependency audit'
82
83
if [ -f "go.mod" ]; then
84
- govulncheck ./... || true
+ govulncheck ./...
85
86
echo "⏭️ Skipped (no go.mod)"
87
@@ -90,8 +90,8 @@ fi
90
[tasks."audit:trivy"]
91
description = 'Generate and scan SBOM using Trivy'
92
93
-trivy fs --format cyclonedx --output sbom.json . || true
94
-trivy sbom sbom.json || true
+trivy fs --format cyclonedx --output sbom.json .
+trivy sbom sbom.json
95
'''
96
97
[tasks.lint]
0 commit comments