fix: pygoat/requirements.txt to reduce vulnerabilities #344
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SCA Check - GH Actions | |
on: push | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@master | |
- name: mkdir for uploaded artifacts | |
run: mkdir downloads | |
- name: install/auth to Snyk | |
run: | |
npm install snyk -g | |
npm install snyk-to-html -g | |
- name: run Snyk | |
run: snyk test | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} |