Skip to content

Commit 17e0e13

Browse files
committed
Update to use go 1.25.7
Signed-off-by: David Kwon <dakwon@redhat.com>
1 parent 3bf3832 commit 17e0e13

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Set up Go 1.x
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.23.6
25+
go-version: 1.25.7
2626
-
2727
name: Check out code into the Go module directory
2828
uses: actions/checkout@v4

build/dockerfiles/controller.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111

1212
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
13-
FROM registry.access.redhat.com/ubi9/go-toolset:1.24.6-1760420453 AS builder
13+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1772454089 AS builder
1414
ENV GOPATH=/go/
1515
USER root
1616

build/makefiles/controller.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ compile:
3131

3232
### build_controller_image: Build container image for Web Terminal Operator
3333
build_controller_image:
34-
$(DOCKER) build -t $(WTO_IMG) -f build/dockerfiles/controller.Dockerfile .
34+
$(DOCKER) build --platform=linux/amd64 -t $(WTO_IMG) -f build/dockerfiles/controller.Dockerfile .
3535
ifneq ($(INITIATOR),CI)
3636
ifeq ($(WTO_IMG),quay.io/wto/web-terminal-operator:next)
3737
@echo -n "Are you sure you want to push $(WTO_IMG)? [y/N] " && read ans && [ $${ans:-N} = y ]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/redhat-developer/web-terminal-operator
22

3-
go 1.23.0
3+
go 1.25.7
44

55
require (
66
github.com/devfile/api/v2 v2.2.0

0 commit comments

Comments
 (0)