Skip to content

Commit d793241

Browse files
rsoaresdKubeSaw
andauthored
build: switch to toolchain-cicd/govulncheck-action (#122)
Co-authored-by: KubeSaw <devsandbox@redhat.com>
1 parent 25e9272 commit d793241

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

.github/workflows/govulncheck.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
go-version-file: go.mod
2020

2121
- name: Run govulncheck
22-
uses: golang/govulncheck-action@v1
22+
uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master
2323
with:
24-
go-version-input: ${{ steps.install-go.outputs.go-version }}
25-
go-package: ./...
26-
repo-checkout: false
24+
go-version-file: go.mod
25+
cache: false
26+
config: .govulncheck.yaml

.govulncheck.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
ignored-vulnerabilities:
2+
# Request smuggling due to acceptance of invalid chunked data in net/http
3+
# Standard library
4+
# Found in: net/http/internal@go1.22.12
5+
# Fixed in: net/http/internal@go1.23.8
6+
- id: GO-2025-3563
7+
silence-until: 2025-10-02
8+
info: https://pkg.go.dev/vuln/GO-2025-3563
9+
# Inconsistent handling of O_CREATE|O_EXCL on Unix and Windows in os in syscall
10+
# Found in: os@go1.22.12
11+
# Fixed in: os@go1.23.10
12+
- id: GO-2025-3750
13+
silence-until: 2025-10-02
14+
info: https://pkg.go.dev/vuln/GO-2025-3750
15+
# Sensitive headers not cleared on cross-origin redirect in net/http
16+
# Found in: net/http@go1.22.12
17+
# Fixed in: Fixed in: net/http@go1.23.10
18+
- id: GO-2025-3751
19+
info: https://pkg.go.dev/vuln/GO-2025-3751
20+
silence-until: 2025-10-02

0 commit comments

Comments
 (0)