Skip to content

Commit b0c9638

Browse files
Merge v1.19 into master (#1564)
2 parents 338f856 + 8e81e7b commit b0c9638

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/workflows/static-analysis.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

.semgrepignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/.evergreen/
2+
/.github/
3+
/bin/
4+
/scripts/
5+
/tests/

0 commit comments

Comments
 (0)