Skip to content

Commit 1eebc4f

Browse files
authored
Merge pull request #469 from roots/govulncheck
GitHub Actions: Add `govulncheck`
2 parents 982a776 + 42dba97 commit 1eebc4f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/govulncheck.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: govulncheck
2+
3+
on:
4+
schedule:
5+
- cron: '0 8 * * *'
6+
workflow_dispatch:
7+
pull_request:
8+
branches:
9+
- master
10+
push:
11+
branches:
12+
- master
13+
14+
jobs:
15+
govulncheck:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: golang/govulncheck-action@v1
19+
with:
20+
go-version-file: 'go.mod'
21+
go-package: ./...

0 commit comments

Comments
 (0)