Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci-operator.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build_root_image:
namespace: openshift
name: release
tag: rhel-9-release-golang-1.24-openshift-4.21
tag: rhel-9-release-golang-1.25-openshift-4.21
2 changes: 1 addition & 1 deletion cmd/ofcir-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18-alpine
FROM golang:1.25-alpine
RUN mkdir /ofcir
ADD . /ofcir
WORKDIR /ofcir
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/openshift/ofcir

go 1.24.0
go 1.25.0

require (
github.com/aws/aws-sdk-go-v2 v1.41.0
Expand Down
4 changes: 2 additions & 2 deletions hack/ci-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ sudo su
tar -xzvf /tmp/ofcir.tar.gz

### Install golang
curl -OL https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.24.0.linux-amd64.tar.gz
curl -OL https://go.dev/dl/go1.25.0.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.25.0.linux-amd64.tar.gz
export GOPATH=/usr/local/go
export PATH=$PATH:$GOPATH/bin

Expand Down
Loading