Skip to content

Commit

Permalink
Add govulncheck
Browse files Browse the repository at this point in the history
  • Loading branch information
upils committed Oct 20, 2023
1 parent 0963746 commit 7981111
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Dependencies vulnerability check

on: [pull_request]

jobs:
govulncheck_job:
runs-on: ubuntu-latest
name: Run govulncheck
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2

- uses: actions/setup-go@v3
with:
go-version: '1.18'

- id: govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: 1.18
go-package: ./...

0 comments on commit 7981111

Please sign in to comment.