Skip to content

Commit 2d00222

Browse files
committed
update golang to v1.24.2
Signed-off-by: dongjiang <[email protected]>
1 parent 2dfc749 commit 2d00222

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.go-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24
1+
1.24.2

Dockerfile.e2e-tests

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Taking a non-alpine image for e2e tests so that cgo can be enabled for the race detector.
2-
FROM golang:1.24.0 as builder
2+
FROM golang:1.24.2 as builder
33

44
WORKDIR $GOPATH/src/github.com/thanos-io/thanos
55

@@ -8,7 +8,7 @@ COPY . $GOPATH/src/github.com/thanos-io/thanos
88
RUN CGO_ENABLED=1 go build -o $GOBIN/thanos -race ./cmd/thanos
99
# -----------------------------------------------------------------------------
1010

11-
FROM golang:1.24.0
11+
FROM golang:1.24.2
1212
LABEL maintainer="The Thanos Authors"
1313

1414
COPY --from=builder $GOBIN/thanos /bin/thanos

Dockerfile.multi-stage

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# By default we pin to amd64 sha. Use make docker to automatically adjust for arm64 versions.
22
ARG BASE_DOCKER_SHA="14d68ca3d69fceaa6224250c83d81d935c053fb13594c811038c461194599973"
3-
FROM golang:1.24.0-alpine3.20 as builder
3+
FROM golang:1.24.2-alpine3.20 as builder
44

55
WORKDIR $GOPATH/src/github.com/thanos-io/thanos
66
# Change in the docker context invalidates the cache so to leverage docker

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/thanos-io/thanos
22

3-
go 1.24
3+
go 1.24.2
44

55
require (
66
capnproto.org/go/capnp/v3 v3.0.0-alpha.30

0 commit comments

Comments
 (0)