Skip to content

Commit 2bea7c9

Browse files
committed
Bump go
Signed-off-by: Filip Petkovski <[email protected]>
1 parent e900549 commit 2bea7c9

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Go
2424
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2525
with:
26-
go-version: 1.22.x
26+
go-version: 1.23.x
2727

2828
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
2929
with:

.github/workflows/go.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2626
with:
27-
go-version: 1.22.x
27+
go-version: 1.23.x
2828

2929
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
3030
with:
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install Go
5252
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
5353
with:
54-
go-version: 1.22.x
54+
go-version: 1.23.x
5555

5656
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
5757
with:
@@ -127,7 +127,7 @@ jobs:
127127
- name: Install Go.
128128
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
129129
with:
130-
go-version: 1.22.x
130+
go-version: 1.23.x
131131

132132
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
133133
with:

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.22
1+
1.23

.promu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
go:
2-
version: 1.22
2+
version: 1.23
33
repository:
44
path: github.com/thanos-io/thanos
55
build:

Dockerfile.e2e-tests

Lines changed: 2 additions & 2 deletions
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.23.2-alpine3.20 as builder
2+
FROM golang:1.23.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.23.2-alpine3.20
11+
FROM golang:1.23
1212
LABEL maintainer="The Thanos Authors"
1313

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

Dockerfile.multi-stage

Lines changed: 1 addition & 1 deletion
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.22-alpine3.18 as builder
3+
FROM golang:1.23.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

0 commit comments

Comments
 (0)