File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " Static Analysis"
2+
3+ on :
4+ merge_group :
5+ pull_request :
6+ branches :
7+ - " v*.*"
8+ - " master"
9+ - " feature/*"
10+ push :
11+ branches :
12+ - " v*.*"
13+ - " master"
14+ - " feature/*"
15+ tags :
16+ - " *"
17+
18+ jobs :
19+ semgrep :
20+ name : " Semgrep"
21+ runs-on : " ubuntu-latest"
22+ container :
23+ image : semgrep/semgrep
24+
25+ steps :
26+ - name : " Checkout"
27+ uses : " actions/checkout@v4"
28+ with :
29+ submodules : true
30+
31+ - name : " Scan"
32+ run : semgrep scan --sarif-output=semgrep.sarif
33+
34+ - name : " Upload SARIF report"
35+ uses : " github/codeql-action/upload-sarif@v3"
36+ with :
37+ sarif_file : semgrep.sarif
Original file line number Diff line number Diff line change 1+ /.evergreen/
2+ /.github/
3+ /bin/
4+ /scripts/
5+ /tests/
You can’t perform that action at this time.
0 commit comments