From f13a50aedda8c2ba275423ed31677254da43deba Mon Sep 17 00:00:00 2001 From: Leszek Jakubowski <2552733+Makdaam@users.noreply.github.com> Date: Tue, 27 Jan 2026 11:32:01 +0000 Subject: [PATCH] Bumping go version to 1.25.5 --- Dockerfile | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 263850c0..0a9a9b43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This is for CI test and should build on x86_64 environment -FROM registry.access.redhat.com/ubi9:9.7 as base +FROM registry.access.redhat.com/ubi9:9.7-1769417801 as base ### Pre-install dependencies # These packages will end up in the final image @@ -15,12 +15,12 @@ FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25 # Configure the env -RUN go env -w GOTOOLCHAIN=go1.25.3+auto +RUN go env -w GOTOOLCHAIN=go1.25.5+auto #Environment variables ENV GOOS=linux GO111MODULE=on GOPROXY=https://proxy.golang.org ENV GOBIN=/gobin GOPATH=/usr/src/go CGO_ENABLED=0 -ENV GOTOOLCHAIN=go1.25.3+auto +ENV GOTOOLCHAIN=go1.25.5+auto # Directory for the binary RUN mkdir /out @@ -38,7 +38,7 @@ RUN chmod -R +x /out FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25 as dep-builder # Ensure we can use Go version as we want -ENV GOTOOLCHAIN=go1.25.3+auto +ENV GOTOOLCHAIN=go1.25.5+auto ARG GITHUB_URL="https://api.github.com" ARG GITHUB_TOKEN="" diff --git a/go.mod b/go.mod index 349c56d7..30234b13 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/openshift/backplane-cli -go 1.25.3 +go 1.25.5 require ( github.com/Masterminds/semver v1.5.0