Snyk GitHub Action added
Signed-off-by: Ihor Dvoretskyi <ihor@linux.com>
This commit is contained in:
15
.github/workflows/snyk.yaml
vendored
Normal file
15
.github/workflows/snyk.yaml
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
name: Snyk
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Run Snyk to check for vulnerabilities
|
||||||
|
uses: snyk/actions/golang@master
|
||||||
|
env:
|
||||||
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||||
|
- name: Upload result to GitHub Code Scanning
|
||||||
|
uses: github/codeql-action/upload-sarif@v1
|
||||||
|
with:
|
||||||
|
sarif_file: snyk.sarif
|
||||||
Reference in New Issue
Block a user