We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36ab96 commit 8f1bdeaCopy full SHA for 8f1bdea
.github/workflows/sast.yml
@@ -36,6 +36,18 @@ jobs:
36
--severity=INFO \
37
.
38
continue-on-error: true
39
+
40
+ - name: Run Semgrep Searif
41
+ run: |
42
+ semgrep --config=auto \
43
+ --sarif \
44
+ --output=semgrep.sarif \
45
+ --error \
46
+ --severity=ERROR \
47
+ --severity=WARNING \
48
+ --severity=INFO \
49
+ .
50
+ continue-on-error: true
51
52
- name: Upload Semgrep results
53
if: always()
@@ -44,6 +56,11 @@ jobs:
56
name: semgrep-results
57
path: semgrep-results.json
58
retention-days: 14
59
+ - name: Upload SARIF file for GitHub Advanced Security Dashboard
60
+ uses: github/codeql-action/upload-sarif@v3
61
+ with:
62
+ sarif_file: semgrep.sarif
63
+ if: always()
64
65
snyk:
66
name: Snyk Security Scan
0 commit comments