Skip to content

Commit 13fd225

Browse files
authored
Merge pull request #2370 from shiftstack/go_version
🌱 Use the same version of Go everywhere (latest: 1.23.4)
2 parents b633296 + 30b566e commit 13fd225

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ issues:
182182
- "zz_generated.*\\.go$"
183183

184184
run:
185-
go: "1.22"
185+
go: "1.23"
186186
timeout: 10m
187187
build-tags:
188188
- e2e

Dockerfile

+1-1
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} as builder
17+
FROM golang:${GO_VERSION} AS builder
1818
WORKDIR /workspace
1919

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

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export GO111MODULE=on
2424
unexport GOPATH
2525

2626
# Go
27-
GO_VERSION ?= 1.23.0
27+
GO_VERSION ?= 1.23.4
2828

2929
# Directories.
3030
ARTIFACTS ?= $(REPO_ROOT)/_artifacts

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module sigs.k8s.io/cluster-api-provider-openstack
22

3-
go 1.23.0
4-
5-
toolchain go1.23.4
3+
go 1.23.4
64

75
require (
86
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc

hack/tools/go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module sigs.k8s.io/cluster-api-provider-openstack/hack/tools
22

3-
go 1.23.0
4-
5-
toolchain go1.23.2
3+
go 1.23.4
64

75
require (
86
github.com/a8m/envsubst v1.4.2

netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ command = "make -C docs/book build"
44
publish = "docs/book/book"
55

66
[build.environment]
7-
GO_VERSION = "1.22.6"
7+
GO_VERSION = "1.23.4"
88

99
# Standard Netlify redirects
1010
[[redirects]]

0 commit comments

Comments
 (0)