Skip to content

Commit

Permalink
Add snyk code action
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed Jan 10, 2023
1 parent 9268be1 commit 104dcd5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/snyk-code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# Perform a code scan using Snyk, uploading the results to the security tab
# Requires a token from snyk as SNYK_TOKEN
name: Run Snyk Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
snyk-code-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- 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:
command: code test
args: --sarif-file-output=snyk.sarif
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: snyk.sarif
category: snyk

0 comments on commit 104dcd5

Please sign in to comment.