Skip to content

Commit 39a4ce9

Browse files
committed
Bump Go version to 1.25.7 throughout project
1.24 is EOL so we should move to 1.25. Bumping the required version in go.mod also to avoid having to do that later. (We do not want to do it on release branches.) Signed-off-by: Lennart Jern <lennart.jern@est.tech>
1 parent 67b7359 commit 39a4ce9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "2"
22
run:
3-
go: "1.24"
3+
go: "1.25"
44
build-tags:
55
- e2e
66
allow-parallel-runners: true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Build the manager binary
1616
ARG GO_VERSION
17-
FROM golang:${GO_VERSION:-1.24.13} AS builder
17+
FROM golang:${GO_VERSION:-1.25.7} AS builder
1818
WORKDIR /workspace
1919

2020
# Run this with docker build --build_arg goproxy=$(go env GOPROXY) to override the goproxy

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ unexport GOPATH
2727
TRACE ?= 0
2828

2929
# Go
30-
GO_VERSION ?= 1.24.13
30+
GO_VERSION ?= 1.25.7
3131

3232
# Directories.
3333
ARTIFACTS ?= $(REPO_ROOT)/_artifacts

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/cluster-api-provider-openstack
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc

hack/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/cluster-api-provider-openstack/hack/tools
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/a8m/envsubst v1.4.3

0 commit comments

Comments
 (0)