Skip to content

Commit 73f7241

Browse files
authored
bump go version to 1.22.5 (zalando#2699)
1 parent e71891e commit 73f7241

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/publish_ghcr_image.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: actions/setup-go@v2
2525
with:
26-
go-version: "^1.22.3"
26+
go-version: "^1.22.5"
2727

2828
- name: Run unit tests
2929
run: make deps mocks test

.github/workflows/run_e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v1
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: "^1.22.3"
17+
go-version: "^1.22.5"
1818
- name: Make dependencies
1919
run: make deps mocks
2020
- name: Code generation

.github/workflows/run_tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: "^1.22.3"
17+
go-version: "^1.22.5"
1818
- name: Make dependencies
1919
run: make deps mocks
2020
- name: Compile

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ docker: ${DOCKERDIR}/${DOCKERFILE}
6969
docker build --rm -t "$(IMAGE):$(TAG)$(CDP_TAG)$(DEBUG_FRESH)$(DEBUG_POSTFIX)" -f "${DOCKERDIR}/${DOCKERFILE}" --build-arg VERSION="${VERSION}" .
7070

7171
indocker-race:
72-
docker run --rm -v "${GOPATH}":"${GOPATH}" -e GOPATH="${GOPATH}" -e RACE=1 -w ${PWD} golang:1.22.3 bash -c "make linux"
72+
docker run --rm -v "${GOPATH}":"${GOPATH}" -e GOPATH="${GOPATH}" -e RACE=1 -w ${PWD} golang:1.22.5 bash -c "make linux"
7373

7474
push:
7575
docker push "$(IMAGE):$(TAG)$(CDP_TAG)"

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@ production for over five years.
5757

5858
| Release | Postgres versions | K8s versions | Golang |
5959
| :-------- | :---------------: | :---------------: | :-----: |
60+
| v1.13.0* | 12 → 16 | 1.27+ | 1.22.5 |
6061
| v1.12.2 | 11 → 16 | 1.27+ | 1.22.3 |
6162
| v1.11.0 | 11 → 16 | 1.27+ | 1.21.7 |
6263
| v1.10.1 | 10 → 15 | 1.21+ | 1.19.8 |
6364
| v1.9.0 | 10 → 15 | 1.21+ | 1.18.9 |
6465
| v1.8.2 | 9.5 → 14 | 1.20 → 1.24 | 1.17.4 |
6566

67+
*not yet released
6668

6769
## Getting started
6870

docker/build_operator.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apt-get install -y wget
1313

1414
(
1515
cd /tmp
16-
wget -q "https://storage.googleapis.com/golang/go1.22.3.linux-${arch}.tar.gz" -O go.tar.gz
16+
wget -q "https://storage.googleapis.com/golang/go1.22.5.linux-${arch}.tar.gz" -O go.tar.gz
1717
tar -xf go.tar.gz
1818
mv go /usr/local
1919
ln -s /usr/local/go/bin/go /usr/bin/go

0 commit comments

Comments
 (0)