Skip to content

Commit 5b2f012

Browse files
fix(deps): update non-minor dependencies (#20)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 410f0a0 commit 5b2f012

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.25.5 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.25.6 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
module github.com/sap/valkey-operator-cop
22

3-
go 1.25.5
3+
go 1.25.6
44

55
require (
66
github.com/pkg/errors v0.9.1
77
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.88.0
8-
github.com/sap/component-operator-runtime v0.3.126
8+
github.com/sap/component-operator-runtime v0.3.128
99
k8s.io/apiextensions-apiserver v0.35.0
1010
k8s.io/apimachinery v0.35.0
1111
k8s.io/client-go v0.35.0
1212
k8s.io/code-generator v0.35.0
1313
k8s.io/kube-aggregator v0.35.0
1414
sigs.k8s.io/controller-runtime v0.23.0
15-
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20251020210837-fb2beabd029b
15+
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20260120065648-aebc15d7c689
1616
sigs.k8s.io/controller-tools v0.20.0
1717
)
1818

@@ -58,7 +58,7 @@ require (
5858
github.com/prometheus/client_model v0.6.2 // indirect
5959
github.com/prometheus/common v0.66.1 // indirect
6060
github.com/prometheus/procfs v0.16.1 // indirect
61-
github.com/sap/go-generics v0.2.47 // indirect
61+
github.com/sap/go-generics v0.2.48 // indirect
6262
github.com/shopspring/decimal v1.4.0 // indirect
6363
github.com/spf13/afero v1.12.0 // indirect
6464
github.com/spf13/cast v1.10.0 // indirect

go.sum

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,12 @@ github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7
139139
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
140140
github.com/sap/component-operator-runtime v0.3.126 h1:MEv9xhgvknOX40Me4UaSGNkiHwNAUOs8bs6Hd3Xrtf4=
141141
github.com/sap/component-operator-runtime v0.3.126/go.mod h1:JJwN7B1tKX/nsXGP2Q/tTZivzyA5O9vAjc+bCTc+l2I=
142+
github.com/sap/component-operator-runtime v0.3.128 h1:7u/Q8N26zmqBFRUY6JeXKesxHkLsN3/jDmkfa2+Q768=
143+
github.com/sap/component-operator-runtime v0.3.128/go.mod h1:iOsrBL/XwaI/9bemu7NaxRImaw2qQrRfyVAN8T3pzfA=
142144
github.com/sap/go-generics v0.2.47 h1:T0ODIlrIuL9SGp3iFhM07bhA3ZXFp2JHcsncDZ+ufbg=
143145
github.com/sap/go-generics v0.2.47/go.mod h1:sShwY4JtsiczJ4IZgpWMcTWRn8r+j3R9eg6JoEEQVyM=
146+
github.com/sap/go-generics v0.2.48 h1:A1xDgf5AmY3D9pbXLte95OuU+rQ92UDthK/YZQDU1KU=
147+
github.com/sap/go-generics v0.2.48/go.mod h1:woHeWQJrRWsuFEoaLz4/ke2nByYbblIF6rHjrZQL9Y4=
144148
github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k=
145149
github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME=
146150
github.com/spf13/afero v1.12.0 h1:UcOPyRBYczmFn6yvphxkn9ZEOY65cpwGKb5mL36mrqs=
@@ -280,6 +284,7 @@ sigs.k8s.io/controller-runtime v0.23.0 h1:Ubi7klJWiwEWqDY+odSVZiFA0aDSevOCXpa38y
280284
sigs.k8s.io/controller-runtime v0.23.0/go.mod h1:DBOIr9NsprUqCZ1ZhsuJ0wAnQSIxY/C6VjZbmLgw0j0=
281285
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20251020210837-fb2beabd029b h1:LKDmTVP3uCYWspYTrYmCgLhAd3HT962RA2ywVrvUdcY=
282286
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20251020210837-fb2beabd029b/go.mod h1:ZRnyjOFW+2y1A0hKZYHxpFb9f7T14KHUR5Y0tNnPsxs=
287+
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20260120065648-aebc15d7c689/go.mod h1:/BwOHkjE31BJ0eqwWNH+XizfhDZv+GqzOGcJFN9iWvw=
283288
sigs.k8s.io/controller-tools v0.20.0 h1:VWZF71pwSQ2lZZCt7hFGJsOfDc5dVG28/IysjjMWXL8=
284289
sigs.k8s.io/controller-tools v0.20.0/go.mod h1:b4qPmjGU3iZwqn34alUU5tILhNa9+VXK+J3QV0fT/uU=
285290
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 h1:IpInykpT6ceI+QxKBbEflcR5EXP7sU1kvOlxwZh5txg=

0 commit comments

Comments
 (0)