diff --git a/.go-version b/.go-version index 3900bcd9fd..e4a973f913 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.24 +1.24.2 diff --git a/Dockerfile.e2e-tests b/Dockerfile.e2e-tests index 4b8b932db8..0f74314b32 100644 --- a/Dockerfile.e2e-tests +++ b/Dockerfile.e2e-tests @@ -1,5 +1,5 @@ # Taking a non-alpine image for e2e tests so that cgo can be enabled for the race detector. -FROM golang:1.24.0 as builder +FROM golang:1.24.2 as builder WORKDIR $GOPATH/src/github.com/thanos-io/thanos @@ -8,7 +8,7 @@ COPY . $GOPATH/src/github.com/thanos-io/thanos RUN CGO_ENABLED=1 go build -o $GOBIN/thanos -race ./cmd/thanos # ----------------------------------------------------------------------------- -FROM golang:1.24.0 +FROM golang:1.24.2 LABEL maintainer="The Thanos Authors" COPY --from=builder $GOBIN/thanos /bin/thanos diff --git a/Dockerfile.multi-stage b/Dockerfile.multi-stage index 0dda31dbc4..ce4fac3e43 100644 --- a/Dockerfile.multi-stage +++ b/Dockerfile.multi-stage @@ -1,6 +1,6 @@ # By default we pin to amd64 sha. Use make docker to automatically adjust for arm64 versions. ARG BASE_DOCKER_SHA="14d68ca3d69fceaa6224250c83d81d935c053fb13594c811038c461194599973" -FROM golang:1.24.0-alpine3.20 as builder +FROM golang:1.24.2-alpine3.20 as builder WORKDIR $GOPATH/src/github.com/thanos-io/thanos # Change in the docker context invalidates the cache so to leverage docker diff --git a/go.mod b/go.mod index 70293bc919..65d487de9d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/thanos-io/thanos -go 1.24 +go 1.24.2 require ( capnproto.org/go/capnp/v3 v3.0.0-alpha.30