We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c11b7fc commit 3c0a62aCopy full SHA for 3c0a62a
.github/workflows/sast-scan.yml
@@ -0,0 +1,11 @@
1
+name: SAST Scan
2
+on:
3
+ pull_request:
4
+ types: [opened, synchronize, reopened]
5
+jobs:
6
+ security-sast:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Semgrep Scan
11
+ run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v "${PWD}:/src" returntocorp/semgrep semgrep scan --config auto
0 commit comments