mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
Merge pull request #932 from idvoretskyi/idvoretskyi-snyk
Snyk GitHub Action added
This commit is contained in:
commit
b1d1d30cdb
1 changed files with 15 additions and 0 deletions
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
|
||||
Loading…
Reference in a new issue