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 6c892dc commit c93a326Copy full SHA for c93a326
.github/workflows/unit-sec-test.yml
@@ -22,20 +22,9 @@ jobs:
22
stupid_snyk:
23
runs-on: ubuntu-latest
24
steps:
25
- - uses: actions/checkout@master
26
- - uses: snyk/actions/setup@master
27
- - uses: actions/setup-python@master
28
-
29
- - name: Install dependencies
30
- run: |
31
- pip install -r requirements.txt
32
- python -m pip install --upgrade pip
33
34
- - name: Authenticate with Snyk
35
- run: snyk auth ${{ secrets.SNYK_TOKEN }}
36
37
- - name: Snyk test
38
- run: snyk test
+ - uses: actions/checkout@main
+ - name: Run Snyk to check for vulnerabilities
+ uses: snyk/actions/python@master
39
env:
40
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
41
0 commit comments