mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-20 20:25:18 +02:00
🔒️ Adds GH action for vulnerability checking with Snyk
This commit is contained in:
parent
ed0398af4b
commit
2b17cb21db
19
.github/workflows/security-scanning.yml
vendored
Normal file
19
.github/workflows/security-scanning.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# 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
|
Loading…
x
Reference in New Issue
Block a user