mirror of https://github.com/Lissy93/dashy.git
20 lines
630 B
YAML
20 lines
630 B
YAML
|
# Uses Snyk to check for potential vulnerabilities, then sends results to GH security tab
|
||
|
name: Check for vulnerabilities with Snyk
|
||
|
on: push
|
||
|
jobs:
|
||
|
security:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
- name: Run Snyk to check for vulnerabilities
|
||
|
uses: snyk/actions/node@master
|
||
|
continue-on-error: true
|
||
|
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@v1
|
||
|
with:
|
||
|
sarif_file: snyk.sarif
|