Skip to content

Commit a205499

Browse files
Bump the gomod group across 1 directory with 4 updates
Bumps the gomod group with 4 updates in the / directory: [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go), [github.com/spf13/cobra](https://github.com/spf13/cobra), [golang.org/x/oauth2](https://github.com/golang/oauth2) and [google.golang.org/api](https://github.com/googleapis/google-api-go-client). Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.8.1 to 1.8.2 - [Release notes](https://github.com/Azure/azure-sdk-for-go/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md) - [Commits](Azure/azure-sdk-for-go@sdk/azidentity/v1.8.1...sdk/azidentity/v1.8.2) Updates `github.com/spf13/cobra` from 1.8.1 to 1.9.1 - [Release notes](https://github.com/spf13/cobra/releases) - [Commits](spf13/cobra@v1.8.1...v1.9.1) Updates `golang.org/x/oauth2` from 0.26.0 to 0.27.0 - [Commits](golang/oauth2@v0.26.0...v0.27.0) Updates `google.golang.org/api` from 0.220.0 to 0.223.0 - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md) - [Commits](googleapis/google-api-go-client@v0.220.0...v0.223.0) --- updated-dependencies: - dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod - dependency-name: golang.org/x/oauth2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3d4c727 commit a205499

File tree

4 files changed

+62
-59
lines changed

4 files changed

+62
-59
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/stolostron/builder:go1.22-linux AS builder
1+
FROM registry.ci.openshift.org/stolostron/builder:go1.23-linux AS builder
22
WORKDIR /go/src/github.com/stolostron/submariner-addon
33
COPY . .
44
ENV GO_PACKAGE github.com/stolostron/submariner-addon

Dockerfile.konflux

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.22 AS builder
1+
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23 AS builder
22
WORKDIR /go/src/github.com/stolostron/submariner-addon
33
COPY . .
44
ENV GO_PACKAGE github.com/stolostron/submariner-addon

go.mod

+21-19
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
module github.com/stolostron/submariner-addon
22

3-
go 1.22.7
3+
go 1.23.0
4+
5+
toolchain go1.23.6
46

57
require (
6-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.1
8+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.2
79
github.com/coreos/go-semver v0.3.1
810
github.com/ghodss/yaml v1.0.1-0.20220118164431-d8423dcdf344
911
github.com/gophercloud/gophercloud v1.14.1
@@ -14,15 +16,15 @@ require (
1416
github.com/openshift/library-go v0.0.0-20240124134907-4dfbf6bc7b11
1517
github.com/operator-framework/api v0.26.0
1618
github.com/pkg/errors v0.9.1
17-
github.com/spf13/cobra v1.8.1
19+
github.com/spf13/cobra v1.9.1
1820
github.com/spf13/pflag v1.0.6
1921
github.com/submariner-io/admiral v0.18.4
2022
github.com/submariner-io/cloud-prepare v0.18.4
2123
github.com/submariner-io/submariner v0.18.4
2224
github.com/submariner-io/submariner-operator v0.18.4
2325
go.uber.org/mock v0.5.0
24-
golang.org/x/oauth2 v0.26.0
25-
google.golang.org/api v0.220.0
26+
golang.org/x/oauth2 v0.27.0
27+
google.golang.org/api v0.223.0
2628
gopkg.in/yaml.v2 v2.4.0
2729
k8s.io/api v0.30.8
2830
k8s.io/apiextensions-apiserver v0.30.8
@@ -39,14 +41,14 @@ require (
3941
)
4042

4143
require (
42-
cloud.google.com/go/auth v0.14.1 // indirect
44+
cloud.google.com/go/auth v0.15.0 // indirect
4345
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
4446
cloud.google.com/go/compute/metadata v0.6.0 // indirect
4547
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0 // indirect
4648
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
4749
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute v1.0.0 // indirect
4850
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork v1.1.0 // indirect
49-
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.2 // indirect
51+
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.3 // indirect
5052
github.com/NYTimes/gziphandler v1.1.1 // indirect
5153
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
5254
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
@@ -87,7 +89,7 @@ require (
8789
github.com/golang/protobuf v1.5.4 // indirect
8890
github.com/google/cel-go v0.17.8 // indirect
8991
github.com/google/gnostic-models v0.6.8 // indirect
90-
github.com/google/go-cmp v0.6.0 // indirect
92+
github.com/google/go-cmp v0.7.0 // indirect
9193
github.com/google/gofuzz v1.2.0 // indirect
9294
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
9395
github.com/google/s2a-go v0.1.9 // indirect
@@ -127,8 +129,8 @@ require (
127129
go.etcd.io/etcd/client/pkg/v3 v3.5.12 // indirect
128130
go.etcd.io/etcd/client/v3 v3.5.12 // indirect
129131
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
130-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
131-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
132+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
133+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
132134
go.opentelemetry.io/otel v1.34.0 // indirect
133135
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1 // indirect
134136
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.23.1 // indirect
@@ -138,20 +140,20 @@ require (
138140
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
139141
go.uber.org/multierr v1.11.0 // indirect
140142
go.uber.org/zap v1.26.0 // indirect
141-
golang.org/x/crypto v0.32.0 // indirect
143+
golang.org/x/crypto v0.33.0 // indirect
142144
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
143145
golang.org/x/mod v0.22.0 // indirect
144-
golang.org/x/net v0.34.0 // indirect
145-
golang.org/x/sync v0.10.0 // indirect
146-
golang.org/x/sys v0.29.0 // indirect
147-
golang.org/x/term v0.28.0 // indirect
148-
golang.org/x/text v0.21.0 // indirect
149-
golang.org/x/time v0.9.0 // indirect
146+
golang.org/x/net v0.35.0 // indirect
147+
golang.org/x/sync v0.11.0 // indirect
148+
golang.org/x/sys v0.30.0 // indirect
149+
golang.org/x/term v0.29.0 // indirect
150+
golang.org/x/text v0.22.0 // indirect
151+
golang.org/x/time v0.10.0 // indirect
150152
golang.org/x/tools v0.28.0 // indirect
151153
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
152-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250127172529-29210b9bc287 // indirect
154+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
153155
google.golang.org/grpc v1.70.0 // indirect
154-
google.golang.org/protobuf v1.36.4 // indirect
156+
google.golang.org/protobuf v1.36.5 // indirect
155157
gopkg.in/inf.v0 v0.9.1 // indirect
156158
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
157159
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)