Skip to content

Commit cf1745c

Browse files
chore(deps): update go dependencies
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent 6da1cdc commit cf1745c

File tree

2 files changed

+115
-103
lines changed

2 files changed

+115
-103
lines changed

go.mod

Lines changed: 35 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
module github.com/securesign/operator
22

3-
go 1.23.6
3+
go 1.24.3
4+
5+
toolchain go1.24.5
46

57
require (
68
github.com/blang/semver/v4 v4.0.0
7-
github.com/go-logr/logr v1.4.2
8-
github.com/google/certificate-transparency-go v1.3.1
9+
github.com/go-logr/logr v1.4.3
10+
github.com/google/certificate-transparency-go v1.3.2
911
github.com/google/go-containerregistry v0.20.3
1012
github.com/google/trillian v1.7.2
1113
github.com/google/uuid v1.6.0
1214
github.com/onsi/ginkgo/v2 v2.23.4
1315
github.com/onsi/gomega v1.37.0
14-
github.com/openshift/api v0.0.0-20250502141415-7152b1b11175
15-
github.com/operator-framework/api v0.31.0
16-
github.com/operator-framework/operator-lib v0.18.0
16+
github.com/openshift/api v0.0.0-20250710082954-674ad74beffc
17+
github.com/operator-framework/api v0.32.0
18+
github.com/operator-framework/operator-lib v0.19.0
1719
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.81.0
1820
github.com/robfig/cron/v3 v3.0.1
19-
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0
20-
golang.org/x/net v0.39.0
21-
google.golang.org/grpc v1.72.0
21+
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc
22+
golang.org/x/net v0.42.0
23+
google.golang.org/grpc v1.73.0
2224
google.golang.org/protobuf v1.36.6
2325
gopkg.in/yaml.v2 v2.4.0
24-
k8s.io/api v0.32.4
25-
k8s.io/apiextensions-apiserver v0.32.4
26-
k8s.io/apimachinery v0.32.4
27-
k8s.io/client-go v0.32.4
26+
k8s.io/api v0.33.2
27+
k8s.io/apiextensions-apiserver v0.33.2
28+
k8s.io/apimachinery v0.33.2
29+
k8s.io/client-go v0.33.2
2830
k8s.io/klog/v2 v2.130.1
29-
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979
30-
sigs.k8s.io/controller-runtime v0.20.4
31-
sigs.k8s.io/yaml v1.4.0
31+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
32+
sigs.k8s.io/controller-runtime v0.21.0
33+
sigs.k8s.io/yaml v1.5.0
3234
)
3335

3436
require (
@@ -48,13 +50,11 @@ require (
4850
github.com/go-openapi/swag v0.23.1 // indirect
4951
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
5052
github.com/gogo/protobuf v1.3.2 // indirect
51-
github.com/golang/protobuf v1.5.4 // indirect
5253
github.com/google/btree v1.1.3 // indirect
53-
github.com/google/gnostic-models v0.6.9 // indirect
54+
github.com/google/gnostic-models v0.7.0 // indirect
5455
github.com/google/go-cmp v0.7.0 // indirect
55-
github.com/google/gofuzz v1.2.0 // indirect
56-
github.com/google/pprof v0.0.0-20250501235452-c0086092b71a // indirect
57-
github.com/gorilla/websocket v1.5.3 // indirect
56+
github.com/google/pprof v0.0.0-20250630185457-6e76a2b096b5 // indirect
57+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
5858
github.com/josharian/intern v1.0.0 // indirect
5959
github.com/json-iterator/go v1.1.12 // indirect
6060
github.com/klauspost/compress v1.18.0 // indirect
@@ -70,30 +70,33 @@ require (
7070
github.com/pkg/errors v0.9.1 // indirect
7171
github.com/prometheus/client_golang v1.22.0 // indirect
7272
github.com/prometheus/client_model v0.6.2 // indirect
73-
github.com/prometheus/common v0.63.0 // indirect
74-
github.com/prometheus/procfs v0.16.1 // indirect
73+
github.com/prometheus/common v0.65.0 // indirect
74+
github.com/prometheus/procfs v0.17.0 // indirect
7575
github.com/rogpeppe/go-internal v1.14.1 // indirect
7676
github.com/sirupsen/logrus v1.9.3 // indirect
7777
github.com/spf13/pflag v1.0.6 // indirect
7878
github.com/transparency-dev/merkle v0.0.2 // indirect
7979
github.com/vbatts/tar-split v0.12.1 // indirect
8080
github.com/x448/float16 v0.8.4 // indirect
8181
go.uber.org/automaxprocs v1.6.0 // indirect
82-
golang.org/x/oauth2 v0.29.0 // indirect
83-
golang.org/x/sync v0.13.0 // indirect
84-
golang.org/x/sys v0.32.0 // indirect
85-
golang.org/x/term v0.31.0 // indirect
86-
golang.org/x/text v0.24.0 // indirect
87-
golang.org/x/time v0.11.0 // indirect
88-
golang.org/x/tools v0.32.0 // indirect
82+
go.yaml.in/yaml/v2 v2.4.2 // indirect
83+
go.yaml.in/yaml/v3 v3.0.3 // indirect
84+
golang.org/x/oauth2 v0.30.0 // indirect
85+
golang.org/x/sync v0.16.0 // indirect
86+
golang.org/x/sys v0.34.0 // indirect
87+
golang.org/x/term v0.33.0 // indirect
88+
golang.org/x/text v0.27.0 // indirect
89+
golang.org/x/time v0.12.0 // indirect
90+
golang.org/x/tools v0.35.0 // indirect
8991
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
90-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250428153025-10db94c68c34 // indirect
92+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
9193
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
9294
gopkg.in/inf.v0 v0.9.1 // indirect
9395
gopkg.in/yaml.v3 v3.0.1 // indirect
9496
gotest.tools/v3 v3.5.2 // indirect
95-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
97+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
9698
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
9799
sigs.k8s.io/randfill v1.0.0 // indirect
98100
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
101+
sigs.k8s.io/structured-merge-diff/v6 v6.2.0 // indirect
99102
)

0 commit comments

Comments
 (0)