Skip to content

Commit 38d36a2

Browse files
committed
build(deps): bump go from 1.23 to 1.24
1 parent 0724be8 commit 38d36a2

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Dockerfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -190,40 +190,40 @@ COPY --link bin/just-cargo /bin/
190190
## Go tools
191191
##
192192

193-
FROM docker.io/library/golang:1.23 as go-delve
193+
FROM docker.io/library/golang:1.24 as go-delve
194194
RUN go install github.com/go-delve/delve/cmd/dlv@latest
195195

196-
FROM docker.io/library/golang:1.23 as go-impl
196+
FROM docker.io/library/golang:1.24 as go-impl
197197
RUN go install github.com/josharian/impl@latest
198198

199-
FROM docker.io/library/golang:1.23 as go-outline
199+
FROM docker.io/library/golang:1.24 as go-outline
200200
RUN go install github.com/ramya-rao-a/go-outline@latest
201201

202-
FROM docker.io/library/golang:1.23 as go-protoc
202+
FROM docker.io/library/golang:1.24 as go-protoc
203203
ARG PROTOC_GEN_GO_VERSION=v1.35.2
204204
ARG PROTOC_GEN_GO_GRPC_VERSION=v1.5.1
205205
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@${PROTOC_GEN_GO_VERSION}
206206
RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@${PROTOC_GEN_GO_GRPC_VERSION}
207207

208-
FROM docker.io/library/golang:1.23 as golangci-lint
208+
FROM docker.io/library/golang:1.24 as golangci-lint
209209
RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
210210

211-
FROM docker.io/library/golang:1.23 as gomodifytags
211+
FROM docker.io/library/golang:1.24 as gomodifytags
212212
RUN go install github.com/fatih/gomodifytags@latest
213213

214-
FROM docker.io/library/golang:1.23 as gopkgs
214+
FROM docker.io/library/golang:1.24 as gopkgs
215215
RUN go install github.com/uudashr/gopkgs/v2/cmd/gopkgs@latest
216216

217-
FROM docker.io/library/golang:1.23 as goplay
217+
FROM docker.io/library/golang:1.24 as goplay
218218
RUN go install github.com/haya14busa/goplay/cmd/goplay@latest
219219

220-
FROM docker.io/library/golang:1.23 as gopls
220+
FROM docker.io/library/golang:1.24 as gopls
221221
RUN go install golang.org/x/tools/gopls@latest
222222

223-
FROM docker.io/library/golang:1.23 as gotests
223+
FROM docker.io/library/golang:1.24 as gotests
224224
RUN go install github.com/cweill/gotests/gotests@latest
225225

226-
FROM docker.io/library/golang:1.23 as gotestsum
226+
FROM docker.io/library/golang:1.24 as gotestsum
227227
ARG GOTESTSUM_VERSION=v1.12.0
228228
RUN go install gotest.tools/gotestsum@${GOTESTSUM_VERSION}
229229

@@ -263,7 +263,7 @@ COPY --link --from=tools-script /bin/* /bin/
263263
##
264264

265265
# A Go build environment.
266-
FROM docker.io/library/golang:1.23 as go
266+
FROM docker.io/library/golang:1.24 as go
267267
RUN --mount=type=cache,from=apt-base,source=/etc/apt,target=/etc/apt,ro \
268268
--mount=type=cache,from=apt-base,source=/var/cache/apt,target=/var/cache/apt,sharing=locked \
269269
--mount=type=cache,from=apt-base,source=/var/lib/apt/lists,target=/var/lib/apt/lists,sharing=locked \

actions/setup-go/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
# TODO(ver): CI should validate at this version matches that in the Dockerfile
66
version:
77
description: Go version
8-
default: 1.23
8+
default: 1.24
99

1010
runs:
1111
using: composite

0 commit comments

Comments
 (0)