Skip to content

Commit 3059cb6

Browse files
Merge remote-tracking branch 'remotes/from/ce/main'
2 parents b37c179 + b05ab9c commit 3059cb6

2 files changed

Lines changed: 26 additions & 19 deletions

File tree

.github/workflows/changelog-checker.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
# If there a `pr/no-changelog` label we ignore this check
1717
if: "!contains(github.event.pull_request.labels.*.name, 'pr/no-changelog')"
1818
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","ubuntu-22.04-x64"]') }}
19+
permissions:
20+
contents: read
21+
issues: read
22+
pull-requests: read
1923
steps:
2024
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2125
with:

.release/security-scan.hcl

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,21 @@ binary {
1010
triage {
1111
suppress {
1212
vulnerabilities = [
13-
"GO-2022-0635", // github.com/aws/aws-sdk-go@v1.x
13+
// GO-2022-0635 is valid. We will remove this when the ongoing migration
14+
// to github.com/aws/aws-sdk-go/v2 has been completed.
15+
"GO-2022-0635",
1416
// GO-2026-5932 appears to be a false positive as it only relates to
1517
// golang.org/x/crypto/openpgp, which is not in use in the project.
1618
// https://pkg.go.dev/vuln/GO-2026-5932
1719
"GO-2026-5932",
18-
// GO-2026-5856 and GO-2026-4970 appear to be false positives as we're
19-
// currently on Go >= 1.26.5 and >= 1.25.12 and these were fixed in
20-
// those versions
21-
// https://pkg.go.dev/vuln/GO-2026-5856
22-
// https://pkg.go.dev/vuln/GO-2026-4970
23-
"GO-2026-5856", "GO-2026-4970",
20+
// GO-2026-5298 appears to be a false positive as the associated
21+
// Github Security Advisory shows that v0.6.1 contains the fix.
22+
// The issue has been reported but the advisory has not been updated
23+
// yet.
24+
// https://pkg.go.dev/vuln/GO-2026-5298
25+
// https://github.com/google/go-attestation/security/advisories/GHSA-9r4w-jg96-92mv
26+
// https://github.com/golang/vulndb/issues/5795
27+
"GO-2026-5298",
2428
]
2529
}
2630
}
@@ -37,22 +41,21 @@ container {
3741
triage {
3842
suppress {
3943
vulnerabilities = [
40-
"GO-2022-0635", // github.com/aws/aws-sdk-go@v1.x
41-
// This appears to be a false positive. Busybox >= 1.34 is unaffected
42-
// https://security.alpinelinux.org/vuln/CVE-2021-42376
43-
// For some reason the OSV entry for fixed is 0 when it should be 1.34:
44-
// https://osv.dev/vulnerability/ALPINE-CVE-2021-42376
45-
"ALPINE-CVE-2021-42376", "CVE-2021-42374",
44+
// GO-2022-0635 is valid. We will remove this when the ongoing migration
45+
// to github.com/aws/aws-sdk-go/v2 has been completed.
46+
"GO-2022-0635",
4647
// GO-2026-5932 appears to be a false positive as it only relates to
4748
// golang.org/x/crypto/openpgp, which is not in use in the project.
4849
// https://pkg.go.dev/vuln/GO-2026-5932
4950
"GO-2026-5932",
50-
// GO-2026-5856 and GO-2026-4970 appear to be false positives as we're
51-
// currently on Go >= 1.26.5 and >= 1.25.12 and these were fixed in
52-
// those versions
53-
// https://pkg.go.dev/vuln/GO-2026-5856
54-
// https://pkg.go.dev/vuln/GO-2026-4970
55-
"GO-2026-5856", "GO-2026-4970",
51+
// GO-2026-5298 appears to be a false positive as the associated
52+
// Github Security Advisory shows that v0.6.1 contains the fix.
53+
// The issue has been reported but the advisory has not been updated
54+
// yet.
55+
// https://pkg.go.dev/vuln/GO-2026-5298
56+
// https://github.com/google/go-attestation/security/advisories/GHSA-9r4w-jg96-92mv
57+
// https://github.com/golang/vulndb/issues/5795
58+
"GO-2026-5298",
5659
]
5760

5861
// The OSV scanner will trip on several packages that are included in the

0 commit comments

Comments
 (0)