From 75e58c721e8cd160f3d7bdc4396b3fe1ad5a4733 Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Tue, 30 Jun 2026 19:53:34 +0530 Subject: [PATCH] chore: bump Go version to 1.26.4 Update go.mod, CI workflow, and controller Dockerfile to use ubi9/go-toolset 1.26.4-1782736563. Signed-off-by: Rohan Kumar Co-authored-by: Cursor --- .github/workflows/pr-check.yml | 2 +- build/dockerfiles/controller.Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 193d5e8..9ddc600 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -22,7 +22,7 @@ jobs: name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: 1.26.3 + go-version: 1.26.4 - name: Check out code into the Go module directory uses: actions/checkout@v4 diff --git a/build/dockerfiles/controller.Dockerfile b/build/dockerfiles/controller.Dockerfile index 96ac63e..8c51fb1 100644 --- a/build/dockerfiles/controller.Dockerfile +++ b/build/dockerfiles/controller.Dockerfile @@ -10,7 +10,7 @@ # # https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset -FROM registry.access.redhat.com/ubi9/go-toolset:1.26.3-1782219569 AS builder +FROM registry.access.redhat.com/ubi9/go-toolset:1.26.4-1782736563 AS builder ENV GOPATH=/go/ USER root diff --git a/go.mod b/go.mod index 41e6b77..cd95eab 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/redhat-developer/web-terminal-operator -go 1.26.3 +go 1.26.4 require ( github.com/devfile/api/v2 v2.2.0