We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca0417 commit e5bb9d8Copy full SHA for e5bb9d8
2 files changed
.github/workflows/govulncheck.yml
@@ -19,8 +19,8 @@ jobs:
19
go-version-file: go.mod
20
21
- name: Run govulncheck
22
- uses: golang/govulncheck-action@v1
+ uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master
23
with:
24
- go-version-input: ${{ steps.install-go.outputs.go-version }}
25
- go-package: ./...
26
- repo-checkout: false
+ go-version-file: go.mod
+ cache: false
+ config: .govulncheck.yaml
.govulncheck.yaml
@@ -0,0 +1,7 @@
1
+ignored-vulnerabilities:
2
+ # Inconsistent handling of O_CREATE|O_EXCL on Unix and Windows in os in syscall
3
+ # Found in: os@go1.22.12
4
+ # Fixed in: os@go1.23.10
5
+ - id: GO-2025-3750
6
+ silence-until: 2025-10-02
7
+ info: https://pkg.go.dev/vuln/GO-2025-3750
0 commit comments