diff --git a/.github/workflows/govulncheck.yml b/.github/workflows/govulncheck.yml index daf21ee4..b9f66984 100644 --- a/.github/workflows/govulncheck.yml +++ b/.github/workflows/govulncheck.yml @@ -16,6 +16,5 @@ jobs: - name: Run govulncheck uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master with: - go-version-file: go.mod - cache: false - config: .govulncheck.yaml \ No newline at end of file + config: .govulncheck.yaml + debug: true # optional (default = false) diff --git a/.govulncheck.yaml b/.govulncheck.yaml index 190759b8..f3307054 100644 --- a/.govulncheck.yaml +++ b/.govulncheck.yaml @@ -1,25 +1,26 @@ ignored-vulnerabilities: - # Parsing DER payload can cause memory exhaustion in encoding/asn1 - # Found in: encoding/asn1@go1.23.12 - # Fixed in: encoding/asn1@go1.24.8 - - id: GO-2025-4011 - info: https://pkg.go.dev/vuln/GO-2025-4011 - silence-until: 2025-12-03 -# Insufficient validation of bracketed IPv6 hostnames in net/url + # Insufficient validation of bracketed IPv6 hostnames in net/url # Found in: net/url@go1.23.12 # Fixed in: net/url@go1.24.8 - id: GO-2025-4010 info: https://pkg.go.dev/vuln/GO-2025-4010 - silence-until: 2025-12-03 - # Quadratic complexity when parsing some invalid inputs in encoding/pem - # Found in: encoding/pem@go1.23.12 - # Fixed in: encoding/pem@go1.24.8 - - id: GO-2025-4009 - info: https://pkg.go.dev/vuln/GO-2025-4009 - silence-until: 2025-12-03 + silence-until: 2026-01-03 # Quadratic complexity when checking name constraints in crypto/x509 # Found in: crypto/x509@go1.23.12 # Fixed in: crypto/x509@go1.24.9 - id: GO-2025-4007 info: https://pkg.go.dev/vuln/GO-2025-4007 - silence-until: 2025-12-03 \ No newline at end of file + silence-until: 2026-01-10 + # Quadratic complexity when parsing some invalid inputs in encoding/pem + # Found in: encoding/pem@go1.23.12 + # Fixed in: encoding/pem@go1.24.8 + - id: GO-2025-4009 + info: https://pkg.go.dev/vuln/GO-2025-4009 + silence-until: 2026-01-10 + # Parsing DER payload can cause memory exhaustion in encoding/asn1 + # Found in: encoding/asn1@go1.23.12 + # Fixed in: encoding/asn1@go1.24.8 + - id: GO-2025-4011 + info: https://pkg.go.dev/vuln/GO-2025-4011 + silence-until: 2026-01-10 + \ No newline at end of file