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 b9046ca commit b2c23d5Copy full SHA for b2c23d5
.github/workflows/unit-sec-test.yml
@@ -36,11 +36,13 @@ jobs:
36
- name: Install dependencies
37
run: pip install -r requirements.txt
38
39
-
40
- - name: Run Snyk to check for vulnerabilities
41
- uses: actions/checkout@master
+ - name: Install Snyk CLI
+ run: npn install -g snyk
+
42
+ - name: Authenticate with Snyk
43
+ run: snyk auth ${{ secrets.SNYK_TOKEN }}
44
env:
- synk_auth: ${{ secrets.SNYK_TOKEN }}
45
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
46
47
- name: Snyk Code test
48
run: snyk code test --sarif > snyk-cide.sarif
0 commit comments