We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aebee4 commit 25e21d9Copy full SHA for 25e21d9
1 file changed
.github/workflows/security-ci.yml
@@ -22,8 +22,6 @@ jobs:
22
23
- name: Run Gitleaks
24
uses: gitleaks/gitleaks-action@v2
25
- # By default, fails the job when leaks are found
26
- # This complements detect-secrets.sh in pre-commit
27
28
semgrep:
29
name: SAST (Semgrep CE)
@@ -42,7 +40,7 @@ jobs:
42
40
43
41
- name: Upload SARIF to GitHub Security
44
uses: github/codeql-action/upload-sarif@v3
45
- if: always() # Upload even if Semgrep finds issues
+ if: always()
46
with:
47
sarif_file: semgrep.sarif
48
@@ -56,8 +54,7 @@ jobs:
56
54
- name: OSV-Scanner
57
55
uses: google/osv-scanner-action@v2.3.1
58
59
- # Pass flags exactly as you would to the osv-scanner CLI
60
- args: |-
+ scan-args: |-
61
-r .
62
--format json
63
--output osv-results.json
0 commit comments