diff --git a/.release/security-scan.hcl b/.release/security-scan.hcl index 6a784734e9..83c503563b 100644 --- a/.release/security-scan.hcl +++ b/.release/security-scan.hcl @@ -67,4 +67,15 @@ binary { ] } } + + # Triage items that are _safe_ to ignore here. Note that this list should be + # periodically cleaned up to remove items that are no longer found by the scanner. + triage { + suppress { + # N.b. `vulnerabilites` is the correct spelling for this tool. + vulnerabilites = [ + "GO-2024-2631", # go-jose/v3@v3.0.3 (false positive) + ] + } + } } diff --git a/scan.hcl b/scan.hcl index 595ce2ac15..d9842018c9 100644 --- a/scan.hcl +++ b/scan.hcl @@ -22,4 +22,15 @@ repository { secrets { all = true } + + # Triage items that are _safe_ to ignore here. Note that this list should be + # periodically cleaned up to remove items that are no longer found by the scanner. + triage { + suppress { + # N.b. `vulnerabilites` is the correct spelling for this tool. + vulnerabilites = [ + "GO-2024-2631", # go-jose/v3@v3.0.3 (false positive) + ] + } + } }