Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Golang #668

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pivotal-cf/om

go 1.23.0
go 1.23.1

require (
cloud.google.com/go/storage v1.43.0
Expand Down Expand Up @@ -30,8 +30,8 @@ require (
github.com/pivotal-cf/replicator v0.0.0-20181127185712-7c58987ce14b
github.com/pivotal-cf/winfs-injector v0.0.0-20200827170301-91411420d92f
github.com/vmware/govmomi v0.42.0
golang.org/x/oauth2 v0.22.0
google.golang.org/api v0.195.0
golang.org/x/oauth2 v0.23.0
google.golang.org/api v0.196.0
gopkg.in/go-playground/validator.v9 v9.31.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
Expand All @@ -40,14 +40,14 @@ require (

require (
cloud.google.com/go v0.115.1 // indirect
cloud.google.com/go/auth v0.9.2 // indirect
cloud.google.com/go/auth v0.9.3 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
cloud.google.com/go/compute/metadata v0.5.0 // indirect
cloud.google.com/go/iam v1.2.0 // indirect
code.cloudfoundry.org/archiver v0.0.0-20200131002800-4ca7245c29b1 // indirect
code.cloudfoundry.org/clock v1.0.0 // indirect
code.cloudfoundry.org/hydrator v0.0.0-20191120195058-919ca7133daa // indirect
code.cloudfoundry.org/tlsconfig v0.1.0 // indirect
code.cloudfoundry.org/tlsconfig v0.4.0 // indirect
code.cloudfoundry.org/workpool v0.0.0-20200131000409-2ac56b354115 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.24 // indirect
Expand All @@ -65,10 +65,10 @@ require (
github.com/cloudfoundry/bosh-davcli v0.0.44 // indirect
github.com/cloudfoundry/bosh-gcscli v0.0.6 // indirect
github.com/cloudfoundry/bosh-s3cli v0.0.95 // indirect
github.com/cloudfoundry/bosh-utils v0.0.486 // indirect
github.com/cloudfoundry/bosh-utils v0.0.495 // indirect
github.com/cloudfoundry/config-server v0.1.21 // indirect
github.com/cloudfoundry/go-socks5 v0.0.0-20240831012420-2590b55236ee // indirect
github.com/cloudfoundry/socks5-proxy v0.2.122 // indirect
github.com/cloudfoundry/socks5-proxy v0.2.123 // indirect
github.com/cppforlife/go-semi-semantic v0.0.0-20160921010311-576b6af77ae4 // indirect
github.com/cyphar/filepath-securejoin v0.2.2 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
Expand All @@ -88,7 +88,7 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20240829160300-da1f7e9f2b25 // indirect
github.com/google/pprof v0.0.0-20240903155634-a8630aee4ab9 // indirect
github.com/google/s2a-go v0.1.8 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.3 // indirect
Expand Down Expand Up @@ -129,18 +129,18 @@ require (
go.opentelemetry.io/otel v1.29.0 // indirect
go.opentelemetry.io/otel/metric v1.29.0 // indirect
go.opentelemetry.io/otel/trace v1.29.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/term v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.24.0 // indirect
golang.org/x/text v0.18.0 // indirect
golang.org/x/time v0.6.0 // indirect
golang.org/x/tools v0.24.0 // indirect
google.golang.org/genproto v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/grpc v1.66.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect
Expand Down
Loading
Loading