Skip to content

Commit 9a894e9

Browse files
committed
deps: Update dependencies to latest.
1 parent 0898f42 commit 9a894e9

File tree

8 files changed

+91
-80
lines changed

8 files changed

+91
-80
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Use distroless as minimal base image to package the manager binary
1616
# Refer to https://github.com/GoogleContainerTools/distroless for more details
17-
FROM gcr.io/distroless/static:nonroot@sha256:c0f429e16b13e583da7e5a6ec20dd656d325d88e6819cafe0adb0828976529dc
17+
FROM gcr.io/distroless/static:nonroot@sha256:627d6c5a23ad24e6bdff827f16c7b60e0289029b0c79e9f7ccd54ae3279fb45f
1818

1919
# For multi-arch builds, use automatic platform build arguments
2020
# see https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope

Dockerfile-operator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
2828

2929
# Use distroless as minimal base image to package the manager binary
3030
# Refer to https://github.com/GoogleContainerTools/distroless for more details
31-
FROM gcr.io/distroless/static:nonroot@sha256:c0f429e16b13e583da7e5a6ec20dd656d325d88e6819cafe0adb0828976529dc
31+
FROM gcr.io/distroless/static:nonroot@sha256:627d6c5a23ad24e6bdff827f16c7b60e0289029b0c79e9f7ccd54ae3279fb45f
3232

3333
# For multi-arch builds, use automatic platform build arguments
3434
# see https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ SHELL = /usr/bin/env bash -o pipefail
5151
.SHELLFLAGS = -ec
5252

5353
## The version to use for the cert-manager operator
54-
CERT_MANAGER_VERSION=v1.17.2# renovate datasource=github-tags depName=cert-manager/cert-manager
54+
CERT_MANAGER_VERSION=v1.18.2# renovate datasource=github-tags depName=cert-manager/cert-manager
5555

5656
##@ General
5757

@@ -439,11 +439,11 @@ CRD_REF_DOCS ?= $(LOCALBIN)/crd-ref-docs
439439
# additional whitespace will break the renovate regex rules.
440440

441441
KUBECTL_VERSION=v1.32.2# renovate datasource=github-tags depName=kubernetes/kubernetes
442-
TERRAFORM_VERSION=v1.11.4# renovate datasource=github-tags depName=hashicorp/terraform
442+
TERRAFORM_VERSION=v1.12.2# renovate datasource=github-tags depName=hashicorp/terraform
443443

444444
CONTROLLER_TOOLS_VERSION=v0.17.3# renovate datasource=go depName=sigs.k8s.io/controller-tools
445445
CRD_REF_DOCS_VERSION=v0.1.0# renovate datasource=go depName=github.com/elastic/crd-ref-docs
446-
GOLANGCI_LINT_VERSION=v1.64.8# renovate datasource=go depName=github.com/golangci/golangci-lint/cmd/golangci-lint
446+
GOLANGCI_LINT_VERSION=v2.2.2# renovate datasource=go depName=github.com/golangci/golangci-lint/cmd/golangci-lint
447447
GO_LICENSES_VERSION=v1.6.0# renovate datasource=go depName=github.com/google/go-licenses
448448

449449
KUSTOMIZE_VERSION=v5.6.0# don't manage with renovate, this repo has non-standard tags

go.mod

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
11
module github.com/GoogleCloudPlatform/cloud-sql-proxy-operator
22

3-
go 1.24
3+
go 1.24.0
4+
5+
toolchain go1.24.2
46

57
require (
6-
github.com/go-logr/logr v1.4.2
8+
github.com/go-logr/logr v1.4.3
79
go.uber.org/zap v1.27.0
8-
k8s.io/api v0.32.3
9-
k8s.io/apimachinery v0.32.3
10-
k8s.io/client-go v0.32.3
11-
sigs.k8s.io/controller-runtime v0.20.4
12-
sigs.k8s.io/yaml v1.4.0
10+
k8s.io/api v0.33.2
11+
k8s.io/apimachinery v0.33.2
12+
k8s.io/client-go v0.33.2
13+
sigs.k8s.io/controller-runtime v0.21.0
14+
sigs.k8s.io/yaml v1.5.0
1315
)
1416

1517
require (
1618
github.com/beorn7/perks v1.0.1 // indirect
19+
github.com/blang/semver/v4 v4.0.0 // indirect
1720
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1821
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1922
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
2023
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
2124
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
2225
github.com/fsnotify/fsnotify v1.9.0 // indirect
23-
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
26+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
2427
github.com/go-logr/zapr v1.3.0 // indirect
2528
github.com/go-openapi/jsonpointer v0.21.1 // indirect
2629
github.com/go-openapi/jsonreference v0.21.0 // indirect
2730
github.com/go-openapi/swag v0.23.1 // indirect
2831
github.com/gogo/protobuf v1.3.2 // indirect
29-
github.com/golang/protobuf v1.5.4 // indirect
3032
github.com/google/btree v1.1.3 // indirect
31-
github.com/google/gnostic-models v0.6.9 // indirect
33+
github.com/google/gnostic-models v0.7.0 // indirect
3234
github.com/google/go-cmp v0.7.0 // indirect
33-
github.com/google/gofuzz v1.2.0 // indirect
3435
github.com/google/uuid v1.6.0 // indirect
3536
github.com/josharian/intern v1.0.0 // indirect
3637
github.com/json-iterator/go v1.1.12 // indirect
@@ -41,29 +42,31 @@ require (
4142
github.com/pkg/errors v0.9.1 // indirect
4243
github.com/prometheus/client_golang v1.22.0 // indirect
4344
github.com/prometheus/client_model v0.6.2 // indirect
44-
github.com/prometheus/common v0.63.0 // indirect
45-
github.com/prometheus/procfs v0.16.1 // indirect
45+
github.com/prometheus/common v0.65.0 // indirect
46+
github.com/prometheus/procfs v0.17.0 // indirect
4647
github.com/spf13/pflag v1.0.6 // indirect
4748
github.com/x448/float16 v0.8.4 // indirect
4849
go.uber.org/multierr v1.11.0 // indirect
49-
golang.org/x/net v0.39.0 // indirect
50-
golang.org/x/oauth2 v0.29.0 // indirect
51-
golang.org/x/sync v0.13.0 // indirect
52-
golang.org/x/sys v0.32.0 // indirect
53-
golang.org/x/term v0.31.0 // indirect
54-
golang.org/x/text v0.24.0 // indirect
55-
golang.org/x/time v0.11.0 // indirect
56-
golang.org/x/tools v0.32.0 // indirect
50+
go.yaml.in/yaml/v2 v2.4.2 // indirect
51+
go.yaml.in/yaml/v3 v3.0.4 // indirect
52+
golang.org/x/net v0.42.0 // indirect
53+
golang.org/x/oauth2 v0.30.0 // indirect
54+
golang.org/x/sync v0.16.0 // indirect
55+
golang.org/x/sys v0.34.0 // indirect
56+
golang.org/x/term v0.33.0 // indirect
57+
golang.org/x/text v0.27.0 // indirect
58+
golang.org/x/time v0.12.0 // indirect
5759
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
5860
google.golang.org/protobuf v1.36.6 // indirect
5961
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6062
gopkg.in/inf.v0 v0.9.1 // indirect
6163
gopkg.in/yaml.v3 v3.0.1 // indirect
62-
k8s.io/apiextensions-apiserver v0.32.3 // indirect
64+
k8s.io/apiextensions-apiserver v0.33.2 // indirect
6365
k8s.io/klog/v2 v2.130.1 // indirect
64-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
65-
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
66+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
67+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
6668
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
6769
sigs.k8s.io/randfill v1.0.0 // indirect
6870
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
71+
sigs.k8s.io/structured-merge-diff/v6 v6.2.0 // indirect
6972
)

0 commit comments

Comments
 (0)