From 49ab9217de2c0fd8aeba632357ba3924e5fb911d Mon Sep 17 00:00:00 2001 From: Luca Miccini Date: Sat, 11 Apr 2026 13:36:30 +0200 Subject: [PATCH] Fix CI build root base image to provide Go 1.24 The rhel-9-release-golang-1.20-openshift-4.14 base image is a floating tag that was recently rebuilt with Go 1.23, breaking all operators that declare go 1.24.x in go.mod with: invalid go version '1.24.4': must match format 1.23 Update the base image to rhel-9-release-golang-1.24-openshift-4.21 which explicitly provides Go 1.24. Co-Authored-By: Claude Opus 4.6 --- images/build-root/Dockerfile.rhel-9.custom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/build-root/Dockerfile.rhel-9.custom b/images/build-root/Dockerfile.rhel-9.custom index f1b0bd8..87a6adb 100644 --- a/images/build-root/Dockerfile.rhel-9.custom +++ b/images/build-root/Dockerfile.rhel-9.custom @@ -1,4 +1,4 @@ -FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.20-openshift-4.14 +FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.24-openshift-4.21 ARG SDK_VERSION=v1.31.0 ARG KUSTOMIZE_VERSION=v5.0.3 ARG YQ_VERSION=v4.44.5