Skip to content

Commit a0fd447

Browse files
Update Go Dependencies
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent a0638af commit a0fd447

File tree

2 files changed

+190
-149
lines changed

2 files changed

+190
-149
lines changed

go.mod

Lines changed: 60 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,113 @@
11
module github.com/securesign/operator
22

3-
go 1.23.6
3+
go 1.24.4
4+
5+
toolchain go1.24.6
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/google/go-containerregistry v0.20.3
9+
github.com/go-logr/logr v1.4.3
10+
github.com/google/certificate-transparency-go v1.3.2
11+
github.com/google/go-containerregistry v0.20.6
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
17-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.81.0
16+
github.com/openshift/api v0.0.0-20250826155724-4a165b214722
17+
github.com/operator-framework/api v0.34.0
18+
github.com/operator-framework/operator-lib v0.19.0
19+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.85.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
22-
google.golang.org/protobuf v1.36.6
21+
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b
22+
golang.org/x/net v0.43.0
23+
google.golang.org/grpc v1.73.0
24+
google.golang.org/protobuf v1.36.8
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.34.0
27+
k8s.io/apiextensions-apiserver v0.34.0
28+
k8s.io/apimachinery v0.34.0
29+
k8s.io/client-go v0.34.0
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-20250820121507-0af2bda4dd1d
32+
sigs.k8s.io/controller-runtime v0.21.0
33+
sigs.k8s.io/yaml v1.6.0
3234
)
3335

3436
require (
3537
github.com/beorn7/perks v1.0.1 // indirect
3638
github.com/cespare/xxhash/v2 v2.3.0 // indirect
37-
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
39+
github.com/containerd/stargz-snapshotter/estargz v0.17.0 // indirect
3840
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
39-
github.com/docker/cli v27.5.1+incompatible // indirect
41+
github.com/docker/cli v28.2.2+incompatible // indirect
4042
github.com/docker/distribution v2.8.3+incompatible // indirect
4143
github.com/docker/docker-credential-helpers v0.9.3 // indirect
4244
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
4345
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4446
github.com/fsnotify/fsnotify v1.9.0 // indirect
45-
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
46-
github.com/go-openapi/jsonpointer v0.21.1 // indirect
47-
github.com/go-openapi/jsonreference v0.21.0 // indirect
48-
github.com/go-openapi/swag v0.23.1 // indirect
47+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
48+
github.com/go-openapi/jsonpointer v0.22.0 // indirect
49+
github.com/go-openapi/jsonreference v0.21.1 // indirect
50+
github.com/go-openapi/swag v0.24.1 // indirect
51+
github.com/go-openapi/swag/cmdutils v0.24.0 // indirect
52+
github.com/go-openapi/swag/conv v0.24.0 // indirect
53+
github.com/go-openapi/swag/fileutils v0.24.0 // indirect
54+
github.com/go-openapi/swag/jsonname v0.24.0 // indirect
55+
github.com/go-openapi/swag/jsonutils v0.24.0 // indirect
56+
github.com/go-openapi/swag/loading v0.24.0 // indirect
57+
github.com/go-openapi/swag/mangling v0.24.0 // indirect
58+
github.com/go-openapi/swag/netutils v0.24.0 // indirect
59+
github.com/go-openapi/swag/stringutils v0.24.0 // indirect
60+
github.com/go-openapi/swag/typeutils v0.24.0 // indirect
61+
github.com/go-openapi/swag/yamlutils v0.24.0 // indirect
4962
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
5063
github.com/gogo/protobuf v1.3.2 // indirect
51-
github.com/golang/protobuf v1.5.4 // indirect
5264
github.com/google/btree v1.1.3 // indirect
53-
github.com/google/gnostic-models v0.6.9 // indirect
65+
github.com/google/gnostic-models v0.7.0 // indirect
5466
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
67+
github.com/google/pprof v0.0.0-20250830080959-101d87ff5bc3 // indirect
68+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
5869
github.com/josharian/intern v1.0.0 // indirect
5970
github.com/json-iterator/go v1.1.12 // indirect
6071
github.com/klauspost/compress v1.18.0 // indirect
6172
github.com/mailru/easyjson v0.9.0 // indirect
6273
github.com/mitchellh/go-homedir v1.1.0 // indirect
6374
github.com/moby/spdystream v0.5.0 // indirect
6475
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
65-
github.com/modern-go/reflect2 v1.0.2 // indirect
76+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
6677
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6778
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
6879
github.com/opencontainers/go-digest v1.0.0 // indirect
6980
github.com/opencontainers/image-spec v1.1.1 // indirect
7081
github.com/pkg/errors v0.9.1 // indirect
71-
github.com/prometheus/client_golang v1.22.0 // indirect
82+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
83+
github.com/prometheus/client_golang v1.23.0 // indirect
7284
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
85+
github.com/prometheus/common v0.65.0 // indirect
86+
github.com/prometheus/procfs v0.17.0 // indirect
7587
github.com/rogpeppe/go-internal v1.14.1 // indirect
7688
github.com/sirupsen/logrus v1.9.3 // indirect
77-
github.com/spf13/pflag v1.0.6 // indirect
89+
github.com/spf13/pflag v1.0.7 // indirect
7890
github.com/transparency-dev/merkle v0.0.2 // indirect
7991
github.com/vbatts/tar-split v0.12.1 // indirect
8092
github.com/x448/float16 v0.8.4 // indirect
8193
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
94+
go.yaml.in/yaml/v2 v2.4.2 // indirect
95+
go.yaml.in/yaml/v3 v3.0.4 // indirect
96+
golang.org/x/oauth2 v0.30.0 // indirect
97+
golang.org/x/sync v0.16.0 // indirect
98+
golang.org/x/sys v0.35.0 // indirect
99+
golang.org/x/term v0.34.0 // indirect
100+
golang.org/x/text v0.28.0 // indirect
101+
golang.org/x/time v0.12.0 // indirect
102+
golang.org/x/tools v0.36.0 // indirect
89103
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
90-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250428153025-10db94c68c34 // indirect
104+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250826171959-ef028d996bc1 // indirect
91105
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
92106
gopkg.in/inf.v0 v0.9.1 // indirect
93107
gopkg.in/yaml.v3 v3.0.1 // indirect
94108
gotest.tools/v3 v3.5.2 // indirect
95-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
96-
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
109+
k8s.io/kube-openapi v0.0.0-20250814151709-d7b6acb124c3 // indirect
110+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
97111
sigs.k8s.io/randfill v1.0.0 // indirect
98-
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
112+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
99113
)

0 commit comments

Comments
 (0)