Skip to content

Commit e4fc659

Browse files
authored
ci: add govulncheck (#95)
* ci: add govulncheck * govulncheck: add workflow name and job id * govulncheck: only run on push to main and monday mornings
1 parent d64c792 commit e4fc659

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/govulncheck.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: govulncheck
2+
3+
on:
4+
schedule:
5+
# 5:11 every Monday
6+
- cron: '11 5 * * 1'
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
govulncheck:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- id: govulncheck
16+
uses: golang/govulncheck-action@v1

0 commit comments

Comments
 (0)