Skip to content

Commit b1f5297

Browse files
committed
chore: update golang to 1.24
1 parent b61d2ad commit b1f5297

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Build the manager binary
16-
FROM golang:1.23.9@sha256:1cc01afde44821895ea712b5b4b802ef3c3ddeb7a7bb3f2e69c19bbc5877dace as builder
16+
FROM golang:1.24.6@sha256:ec428de7d307550fb36d383524328a30701b1f5c3e72c30d35ab9c64498441bb as builder
1717
WORKDIR /workspace
1818

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

Tiltfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def validate_auth():
9898

9999
tilt_helper_dockerfile_header = """
100100
# Tilt image
101-
FROM golang:1.23.6 as tilt-helper
101+
FROM golang:1.24.6 as tilt-helper
102102
# Install delve. Note this should be kept in step with the Go release minor version.
103103
RUN go install github.com/go-delve/delve/cmd/[email protected]
104104
# Support live reloading with Tilt
@@ -109,7 +109,7 @@ RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com
109109
"""
110110

111111
tilt_dockerfile_header = """
112-
FROM golang:1.23.6 as tilt
112+
FROM golang:1.24.6 as tilt
113113
WORKDIR /
114114
COPY --from=tilt-helper /process.txt .
115115
COPY --from=tilt-helper /start.sh .

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-gcp
22

3-
go 1.23.7
3+
go 1.24.6
44

55
require (
66
cloud.google.com/go/compute v1.44.0

0 commit comments

Comments
 (0)