Skip to content

Commit fc79c8e

Browse files
committed
Bump GoVersion to 1.24.9
1 parent eb0b49e commit fc79c8e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
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.12
26+
GO_VERSION ?= 1.24.9
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.12 as tilt-helper
175+
FROM golang:1.24.9 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.12 as tilt
186+
FROM golang:1.24.9 as tilt
187187
WORKDIR /
188188
COPY --from=tilt-helper /process.txt .
189189
COPY --from=tilt-helper /start.sh .

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module sigs.k8s.io/cluster-api
22

33
go 1.23.0
44

5+
godebug default=go1.23
6+
57
require (
68
github.com/MakeNowJust/heredoc v1.0.0
79
github.com/Masterminds/sprig/v3 v3.3.0

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.12"
7+
GO_VERSION = "1.24.9"
88

99
# Standard Netlify redirects
1010
[[redirects]]

0 commit comments

Comments
 (0)