Skip to content

Commit e8df80c

Browse files
authored
chore: Add Semgrep static analysis scans (#96)
1 parent 28cc6f1 commit e8df80c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/semgrep.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Semgrep
2+
on:
3+
pull_request: {}
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
semgrep:
9+
name: Scan
10+
runs-on: ubuntu-latest
11+
if: (github.actor != 'dependabot[bot]')
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: returntocorp/semgrep-action@v1
15+
with:
16+
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}

0 commit comments

Comments
 (0)