2021-07-23 15:09:48 +03:00
|
|
|
# Uses Snyk to check for potential vulnerabilities, then sends results to GH security tab
|
2021-09-12 23:45:41 +03:00
|
|
|
name: 💡 Vulnerability Scanning
|
2021-07-23 15:09:48 +03:00
|
|
|
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
|