Skip to content

Commit

Permalink
Merge pull request #181 from robertsirc/adding-govulncheck-gh-action
Browse files Browse the repository at this point in the history
adding govulncheck
  • Loading branch information
mattfarina authored Sep 13, 2024
2 parents ee949cb + 46ad78f commit 45c1c7f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: govulncheck
on:
push:
paths:
- go.sum
schedule:
- cron: "0 0 * * *"

jobs:
govulncheck:
name: govulncheck
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # [email protected]
with:
go-version: '1.22'
check-latest: true
- name: govulncheck
uses: golang/govulncheck-action@dd0578b371c987f96d1185abb54344b44352bd58 # [email protected]
with:
go-package: ./...

0 comments on commit 45c1c7f

Please sign in to comment.