Fix container scan vulnerabilities (VULN-71179, VULN-71171, VULN-71183, VULN-71182)#1852
Open
gabrielm-splunk wants to merge 2 commits intodevelopfrom
Open
Fix container scan vulnerabilities (VULN-71179, VULN-71171, VULN-71183, VULN-71182)#1852gabrielm-splunk wants to merge 2 commits intodevelopfrom
gabrielm-splunk wants to merge 2 commits intodevelopfrom
Conversation
This commit addresses four vulnerability findings from the container scanner: - VULN-71179: Upgrade github.com/aws/aws-sdk-go-v2/service/s3 from v1.84.1 to v1.99.0 - VULN-71171: Upgrade go.opentelemetry.io/otel/sdk from v1.40.0 to v1.43.0 - VULN-71183: Upgrade github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream from v1.6.11 to v1.7.8 - VULN-71182: Upgrade Go stdlib from v1.25.8 to v1.26.2 All dependency updates meet or exceed the minimum versions required by the container scanner. Unit tests pass with 83.6% composite coverage. Jira: VULN-71179, VULN-71171, VULN-71183, VULN-71182 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Update Go version references in build configuration files to match the go.mod update for VULN-71182 compliance. Files updated: - Dockerfile: golang:1.25.8 -> golang:1.26.2 - Dockerfile.distroless: golang:1.25.8 -> golang:1.26.2 - .env: GO_VERSION=1.25.8 -> GO_VERSION=1.26.2 GitHub Actions workflows automatically use GO_VERSION from .env, so no workflow file changes are needed. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR addresses four vulnerability findings from the container scanner by updating dependencies to their latest secure versions:
github.com/aws/aws-sdk-go-v2/service/s3from v1.84.1 to v1.99.0 (required: v1.97.3)go.opentelemetry.io/otel/sdkfrom v1.40.0 to v1.43.0github.com/aws/aws-sdk-go-v2/aws/protocol/eventstreamfrom v1.6.11 to v1.7.8All updates meet or exceed the minimum versions required by the container scanner.
Changes
go.modwith Go 1.26.2 and latest secure dependency versionsgo mod tidyto update all transitive dependenciesTesting
Related Issues
🤖 Generated with Claude Code