Skip to content

Commit e273f28

Browse files
authored
Merge pull request #790 from pavolloffay/go123
Bump Golang to 1.23
2 parents 5c6e0f4 + 8d75968 commit e273f28

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: golang:1.22
5+
- image: golang:1.23
66
steps:
77
- checkout
88
- run: |
@@ -11,7 +11,7 @@ jobs:
1111
1212
lint:
1313
docker:
14-
- image: golang:1.22
14+
- image: golang:1.23
1515
steps:
1616
- checkout
1717
- run: |
@@ -26,7 +26,7 @@ jobs:
2626
- run: |
2727
apt-get update && apt-get -y install xz-utils unzip openssl
2828
sudo rm -rf /usr/local/go
29-
wget -qO- https://golang.org/dl/go1.21.7.linux-amd64.tar.gz | sudo tar -C /usr/local -xzf -
29+
wget -qO- https://golang.org/dl/go1.23.5.linux-amd64.tar.gz | sudo tar -C /usr/local -xzf -
3030
export PATH=$PATH:/usr/local/go/bin
3131
go version
3232
make test --always-make
@@ -38,14 +38,14 @@ jobs:
3838
- checkout
3939
- run: |
4040
sudo rm -rf /usr/local/go
41-
wget -qO- https://golang.org/dl/go1.21.7.linux-amd64.tar.gz | sudo tar -C /usr/local -xzf -
41+
wget -qO- https://golang.org/dl/go1.23.5.linux-amd64.tar.gz | sudo tar -C /usr/local -xzf -
4242
export PATH=$PATH:/usr/local/go/bin
4343
go version
4444
make test-e2e
4545
4646
generate:
4747
docker:
48-
- image: golang:1.22
48+
- image: golang:1.23
4949
steps:
5050
- checkout
5151
- run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.22.8-alpine3.20 as builder
1+
FROM --platform=$BUILDPLATFORM golang:1.23.5-alpine3.20 as builder
22

33
ARG TARGETOS
44
ARG TARGETARCH

Dockerfile.e2e-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.8-alpine3.20 as builder
1+
FROM golang:1.23.5-alpine3.20 as builder
22

33
RUN apk add --update --no-cache ca-certificates tzdata git make bash && update-ca-certificates
44

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/observatorium/api
22

3-
go 1.22.0
4-
5-
toolchain go1.22.8
3+
go 1.23.0
64

75
require (
86
github.com/brancz/kube-rbac-proxy v0.16.1

0 commit comments

Comments
 (0)