Skip to content

Merge pull request #267 from robinostlund/v5.0.2 #415

Merge pull request #267 from robinostlund/v5.0.2

Merge pull request #267 from robinostlund/v5.0.2 #415

Workflow file for this run

name: "Snyk"
on: push
jobs:
snyk:
name: "Snyk"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/python@master
continue-on-error: true # To make sure that SARIF upload gets called
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --sarif-file-output=snyk.sarif
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: snyk.sarif