Update dependencies and enhance security scan configuration #304
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes updates to the security scan configuration and dependency versions. The most important changes involve adding a triage section for suppressing specific vulnerabilities in the security scan configuration and upgrading several Go module dependencies to newer versions.
Security scan configuration updates:
.release/security-scan.hcl
: Added atriage
section to suppress specific vulnerabilities (CVE-2025-46394
andCVE-2024-58251
) for thecontainer
block, with comments explaining why these vulnerabilities are safe to ignore..release/security-scan.hcl
: Updated formatting in thebinary
block for consistency in the suppression list.Dependency updates:
go.mod
: Upgraded several Go module dependencies, includinggolang.org/x/crypto
(v0.35.0 → v0.38.0),golang.org/x/net
(v0.34.0 → v0.40.0),golang.org/x/sync
(v0.11.0 → v0.14.0),golang.org/x/sys
(v0.30.0 → v0.33.0), andgolang.org/x/text
(v0.22.0 → v0.25.0). These updates bring in the latest improvements and fixes.