Skip to content

Commit 3bc244f

Browse files
authored
bump dependencies and reflect linter suggestions (#2963)
1 parent 8c2a290 commit 3bc244f

27 files changed

+165
-159
lines changed

.github/workflows/publish_ghcr_image.yaml

Lines changed: 1 addition & 1 deletion
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.25.0"
26+
go-version: "^1.25.3"
2727

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

.github/workflows/run_e2e.yaml

Lines changed: 1 addition & 1 deletion
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.25.0"
17+
go-version: "^1.25.3"
1818
- name: Make dependencies
1919
run: make deps mocks
2020
- name: Code generation

.github/workflows/run_tests.yaml

Lines changed: 1 addition & 1 deletion
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.25.0"
17+
go-version: "^1.25.3"
1818
- name: Make dependencies
1919
run: make deps mocks
2020
- name: Compile

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# global owners
2-
* @sdudoladov @Jan-M @FxKu @jopadi @idanovinda @hughcapet @macedigital
2+
* @sdudoladov @Jan-M @FxKu @jopadi @idanovinda @hughcapet

MAINTAINERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ Jan Mussler <jan.mussler@zalando.de>
44
Jociele Padilha <jociele.padilha@zalando.de>
55
Ida Novindasari <ida.novindasari@zalando.de>
66
Polina Bungina <polina.bungina@zalando.de>
7-
Matthias Adler <matthias.adler@zalando.de>

Makefile

Lines changed: 2 additions & 2 deletions
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.25.0 bash -c "make linux"
72+
docker run --rm -v "${GOPATH}":"${GOPATH}" -e GOPATH="${GOPATH}" -e RACE=1 -w ${PWD} golang:1.25.3 bash -c "make linux"
7373

7474
push:
7575
docker push "$(IMAGE):$(TAG)$(CDP_TAG)"
@@ -78,7 +78,7 @@ mocks:
7878
GO111MODULE=on go generate ./...
7979

8080
tools:
81-
GO111MODULE=on go get k8s.io/client-go@kubernetes-1.30.4
81+
GO111MODULE=on go get k8s.io/client-go@kubernetes-1.32.9
8282
GO111MODULE=on go install github.com/golang/mock/mockgen@v1.6.0
8383
GO111MODULE=on go mod tidy
8484

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ production for over five years.
5757

5858
| Release | Postgres versions | K8s versions | Golang |
5959
| :-------- | :---------------: | :---------------: | :-----: |
60+
| v1.15.0 | 13 &rarr; 17 | 1.27+ | 1.25.3 |
6061
| v1.14.0 | 13 &rarr; 17 | 1.27+ | 1.23.4 |
6162
| v1.13.0 | 12 &rarr; 16 | 1.27+ | 1.22.5 |
6263
| v1.12.0 | 11 &rarr; 16 | 1.27+ | 1.22.3 |
6364
| v1.11.0 | 11 &rarr; 16 | 1.27+ | 1.21.7 |
6465
| v1.10.1 | 10 &rarr; 15 | 1.21+ | 1.19.8 |
65-
| v1.9.0 | 10 &rarr; 15 | 1.21+ | 1.18.9 |
6666

6767
## Getting started
6868

charts/postgres-operator/crds/operatorconfigurations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
type: string
6969
docker_image:
7070
type: string
71-
default: "ghcr.io/zalando/spilo-17:4.0-p2"
71+
default: "ghcr.io/zalando/spilo-17:4.0-p3"
7272
enable_crd_registration:
7373
type: boolean
7474
default: true

charts/postgres-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ configGeneral:
3838
# etcd connection string for Patroni. Empty uses K8s-native DCS.
3939
etcd_host: ""
4040
# Spilo docker image
41-
docker_image: ghcr.io/zalando/spilo-17:4.0-p2
41+
docker_image: ghcr.io/zalando/spilo-17:4.0-p3
4242

4343
# key name for annotation to ignore globally configured instance limits
4444
# ignore_instance_limits_annotation_key: ""

docker/build_operator.sh

Lines changed: 1 addition & 1 deletion
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.25.0.linux-${arch}.tar.gz" -O go.tar.gz
16+
wget -q "https://storage.googleapis.com/golang/go1.25.3.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)