1 parent bf6077b commit 2f38bfaCopy full SHA for 2f38bfa
1 file changed
.github/workflows/sca-scan.yml
@@ -0,0 +1,15 @@
1
+name: Source Composition Analysis Scan
2
+on:
3
+ pull_request:
4
+ types: [opened, synchronize, reopened]
5
+jobs:
6
+ security:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - name: Run Snyk to check for vulnerabilities
11
+ uses: snyk/actions/maven@master
12
+ env:
13
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
14
+ with:
15
+ args: --fail-on=all
0 commit comments