We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2fa96a commit c9180f7Copy full SHA for c9180f7
.github/workflows/sca-scan.yml
@@ -0,0 +1,14 @@
1
+name: Source Composition Analysis Scan
2
+on:
3
+ pull_request:
4
+ types: [opened, synchronize, reopened]
5
+jobs:
6
+ security-sca:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - uses: snyk/actions/setup@master
11
+ - name: Run Snyk to check for vulnerabilities
12
+ run: snyk test --all-projects --fail-on=all
13
+ env:
14
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
0 commit comments