Skip to content

Commit

Permalink
Add dep scan (#1223)
Browse files Browse the repository at this point in the history
* Create Security.yml

* Add Security Scanning workflow

* update command

Removing the all projects option
  • Loading branch information
bkizer-tenable authored Apr 20, 2022
1 parent 93a7c87 commit 2bf371d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/Security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Dependency Scanning
on: push
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: snyk/actions/setup@master
- uses: actions/setup-go@v1
with:
go-version: '1.17'
- name: Go Dependency Scanning
run: snyk monitor --severity-threshold=high
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 comments on commit 2bf371d

Please sign in to comment.