Skip to content

fix(security): remediate CVE vulnerabilities for release-0.4#39

Merged
ulucinar merged 2 commits intorelease-0.4from
fix/cve-remediation-release-0.4-20260205-212740
Feb 5, 2026
Merged

fix(security): remediate CVE vulnerabilities for release-0.4#39
ulucinar merged 2 commits intorelease-0.4from
fix/cve-remediation-release-0.4-20260205-212740

Conversation

@upbound-bot
Copy link

Summary

This PR fixes CVE vulnerabilities identified by security scanning.

Tracking issue: https://github.com/upbound/upbound-official-build/issues/226

Vulnerabilities Fixed

CVE/GHSA Severity Package Fixed Version
CVE-2025-61726 High stdlib go1.24.12
CVE-2025-61728 Medium stdlib go1.24.12
CVE-2025-61730 Medium stdlib go1.24.12
CVE-2025-61731 High stdlib go1.24.12

Changes Made

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

References

Verification

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

- Update Go version to 1.24.12 (fixes CVE-2025-61726, CVE-2025-61728, CVE-2025-61730, CVE-2025-61731)

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

Build Failure Analysis

Check: build (amd64)
Status: Failed
Analyzed: 2026-02-05T18:33:04Z

Summary

The Docker build failed due to a Go version mismatch between the CI workflow configuration and the go.mod requirements.

Root Cause

The CVE remediation commit updated the go directive in go.mod from 1.24.11 to 1.24.12 to fix security vulnerabilities. However, the CI workflow's GO_VERSION environment variable in .github/workflows/ci.yml still specifies 1.24.11. When Docker builds the image using the golang:1.24.11 base image and tries to run go mod download, it fails because Go 1.24.11 cannot satisfy the go >= 1.24.12 requirement.

Error Details

go: go.mod requires go >= 1.24.12 (running go 1.24.11; GOTOOLCHAIN=local)
ERROR: failed to solve: process "...go mod download..." did not complete successfully: exit code: 1

Recommendation

Update the GO_VERSION environment variable in .github/workflows/ci.yml from 1.24.11 to 1.24.12 to match the go.mod requirements. This is a code fix, not a retry candidate.


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

- Update GO_VERSION environment variable from 1.24.11 to 1.24.12

Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com>
@ulucinar ulucinar merged commit c51ea6b into release-0.4 Feb 5, 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