Skip to content

fix(security): remediate CVE vulnerabilities#40

Merged
ulucinar merged 2 commits intorelease-0.3from
fix/cve-remediation-release-0.3-20260302-173804
Mar 2, 2026
Merged

fix(security): remediate CVE vulnerabilities#40
ulucinar merged 2 commits intorelease-0.3from
fix/cve-remediation-release-0.3-20260302-173804

Conversation

@upbound-bot
Copy link

Summary

This PR fixes CVE vulnerabilities identified by security scanning.

Vulnerabilities Fixed

CVE/GHSA Severity Package Fixed Version
CVE-2025-68121 Critical stdlib go1.24.13
CVE-2025-61732 High stdlib go1.24.13

Changes Made

  • Updated Go version from 1.24.12 to 1.24.13 in go.mod

References

Verification

  • Rescanned with cve-scan skill after fixes
  • All listed vulnerabilities resolved

- Update Go version to 1.24.13 (fixes CVE-2025-68121, CVE-2025-61732)

Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com>
@upbound-bot
Copy link
Author

Build Failure Analysis

Check: build (arm64)
Status: Failed
Analyzed: 2026-03-02T17:38:04Z

Summary

Docker build failed because the CI workflow uses Go 1.24.12, but go.mod requires Go 1.24.13 after CVE fixes.

Root Cause

The CVE remediation in this PR updated go.mod to require Go 1.24.13 to fix CVE-2025-68121 and CVE-2025-61732. However, the CI workflow (.github/workflows/ci.yml) has GO_VERSION: '1.24.12' hardcoded, which is passed to the Dockerfile as a build argument.

When the Docker build runs go mod download, Go reports: "go.mod requires go >= 1.24.13 (running go 1.24.12; GOTOOLCHAIN=local)"

Error Details

#14 0.063 go: go.mod requires go >= 1.24.13 (running go 1.24.12; GOTOOLCHAIN=local)
ERROR: failed to solve: process ... did not complete successfully: exit code: 1

Recommendation

Update the GO_VERSION environment variable in .github/workflows/ci.yml from '1.24.12' to '1.24.13' to match the Go version required by go.mod. This is a CI environment fix, not a code rollback - the CVE fixes must be preserved.


This analysis was generated by the build-failure-analyze skill.

- Update GO_VERSION from 1.24.12 to 1.24.13 in CI workflow to match go.mod requirements

Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com>
@ulucinar ulucinar merged commit dc31aee into release-0.3 Mar 2, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants