Skip to content

Commit 308a59b

Browse files
authored
Merge pull request #11981 from mboersma/bump-go-toolchain
🌱 Bump go to v1.23.7
2 parents 65c7ab6 + fc8a469 commit 308a59b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash
2323
#
2424
# Go.
2525
#
26-
GO_VERSION ?= 1.23.6
26+
GO_VERSION ?= 1.23.7
2727
GO_DIRECTIVE_VERSION ?= 1.23.0
2828
GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION)
2929

Tiltfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def load_provider_tilt_files():
172172

173173
tilt_helper_dockerfile_header = """
174174
# Tilt image
175-
FROM golang:1.23.6 as tilt-helper
175+
FROM golang:1.23.7 as tilt-helper
176176
# Install delve. Note this should be kept in step with the Go release minor version.
177177
RUN go install github.com/go-delve/delve/cmd/dlv@v1.23
178178
# Support live reloading with Tilt
@@ -183,7 +183,7 @@ RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com
183183
"""
184184

185185
tilt_dockerfile_header = """
186-
FROM golang:1.23.6 as tilt
186+
FROM golang:1.23.7 as tilt
187187
WORKDIR /
188188
COPY --from=tilt-helper /process.txt .
189189
COPY --from=tilt-helper /start.sh .

docs/release/role-handbooks/release-lead/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The goal of this task is to ensure we are always using the latest Go version for
164164

165165
1. Keep track of new Go versions
166166
2. Bump the Go version in supported branches if necessary
167-
<br>Prior art: [Bump to Go 1.19.5](https://github.com/kubernetes-sigs/cluster-api/pull/7981)
167+
<br>Prior art: [Bump go to v1.23.7](https://github.com/kubernetes-sigs/cluster-api/pull/11981)
168168

169169
Note: If the Go minor version of one of our supported branches goes out of supported, we should consider bumping
170170
to a newer Go minor version according to our [backport policy](./../../../../CONTRIBUTING.md#backporting-a-patch).

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
publish = "docs/book/book"
55

66
[build.environment]
7-
GO_VERSION = "1.23.6"
7+
GO_VERSION = "1.23.7"
88

99
# Standard Netlify redirects
1010
[[redirects]]

0 commit comments

Comments
 (0)