Skip to content

Commit d311090

Browse files
committed
chore: update golang to 1.24
1 parent ed6b043 commit d311090

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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/dlv@v1.23
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 .

0 commit comments

Comments
 (0)