Skip to content

Commit c801239

Browse files
committed
ci/gha: add govulncheck job
This is to ensure our minimal dependencies do not have known vulnerabilities. NOTE we do not specify Go version to be used here to avoid reporting vulnerabilities in stdlib which we're not interested in here. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 534d09b commit c801239

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/validate.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,17 @@ jobs:
7575
go-version: "${{ env.GO_VERSION }}"
7676
- run: go mod tidy --diff
7777

78+
govulncheck:
79+
runs-on: ubuntu-24.04
80+
steps:
81+
- uses: golang/govulncheck-action@v1
82+
7883
all-done:
7984
needs:
8085
- codespell
8186
- deps
8287
- go-fix
88+
- govulncheck
8389
- lint
8490
- space-at-eol
8591
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)