Skip to content

Commit ea5f95e

Browse files
authored
Bump certificates to 0.28.3 (#1390)
1 parent 2e5b5c9 commit ea5f95e

File tree

2 files changed

+59
-59
lines changed

2 files changed

+59
-59
lines changed

go.mod

+19-19
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.6
55
require (
66
github.com/Microsoft/go-winio v0.6.2
77
github.com/ThomasRooney/gexpect v0.0.0-20161231170123-5482f0350944
8-
github.com/ccoveille/go-safecast v1.5.0
8+
github.com/ccoveille/go-safecast v1.6.0
99
github.com/fxamacker/cbor/v2 v2.7.0
1010
github.com/go-jose/go-jose/v3 v3.0.4
1111
github.com/google/go-cmp v0.7.0
@@ -17,7 +17,7 @@ require (
1717
github.com/pquerna/otp v1.4.0
1818
github.com/slackhq/nebula v1.9.5
1919
github.com/smallstep/assert v0.0.0-20200723003110-82e2b9b3b262
20-
github.com/smallstep/certificates v0.28.2
20+
github.com/smallstep/certificates v0.28.3
2121
github.com/smallstep/certinfo v1.13.0
2222
github.com/smallstep/cli-utils v0.12.1
2323
github.com/smallstep/go-attestation v0.4.4-0.20240109183208-413678f90935
@@ -37,13 +37,13 @@ require (
3737
)
3838

3939
require (
40-
cloud.google.com/go v0.118.2 // indirect
40+
cloud.google.com/go v0.118.3 // indirect
4141
cloud.google.com/go/auth v0.15.0 // indirect
4242
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
4343
cloud.google.com/go/compute/metadata v0.6.0 // indirect
44-
cloud.google.com/go/iam v1.4.0 // indirect
45-
cloud.google.com/go/longrunning v0.6.4 // indirect
46-
cloud.google.com/go/security v1.18.3 // indirect
44+
cloud.google.com/go/iam v1.4.1 // indirect
45+
cloud.google.com/go/longrunning v0.6.6 // indirect
46+
cloud.google.com/go/security v1.18.4 // indirect
4747
dario.cat/mergo v1.0.1 // indirect
4848
filippo.io/edwards25519 v1.1.0 // indirect
4949
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
@@ -62,7 +62,7 @@ require (
6262
github.com/cespare/xxhash v1.1.0 // indirect
6363
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6464
github.com/chzyer/readline v1.5.1 // indirect
65-
github.com/coreos/go-oidc/v3 v3.12.0 // indirect
65+
github.com/coreos/go-oidc/v3 v3.13.0 // indirect
6666
github.com/corpix/uarand v0.2.0 // indirect
6767
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
6868
github.com/creack/pty v1.1.18 // indirect
@@ -87,15 +87,15 @@ require (
8787
github.com/google/go-tpm-tools v0.4.5 // indirect
8888
github.com/google/go-tspi v0.3.0 // indirect
8989
github.com/google/s2a-go v0.1.9 // indirect
90-
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
90+
github.com/googleapis/enterprise-certificate-proxy v0.3.5 // indirect
9191
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
9292
github.com/huandu/xstrings v1.5.0 // indirect
9393
github.com/jackc/pgpassfile v1.0.0 // indirect
9494
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
9595
github.com/jackc/pgx/v5 v5.6.0 // indirect
9696
github.com/jackc/puddle/v2 v2.2.1 // indirect
9797
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
98-
github.com/klauspost/compress v1.17.9 // indirect
98+
github.com/klauspost/compress v1.17.11 // indirect
9999
github.com/kr/pty v1.1.8 // indirect
100100
github.com/kylelemons/godebug v1.1.0 // indirect
101101
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -104,13 +104,13 @@ require (
104104
github.com/mitchellh/copystructure v1.2.0 // indirect
105105
github.com/mitchellh/reflectwalk v1.0.2 // indirect
106106
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
107-
github.com/newrelic/go-agent/v3 v3.36.0 // indirect
107+
github.com/newrelic/go-agent/v3 v3.37.0 // indirect
108108
github.com/peterbourgon/diskv/v3 v3.0.1 // indirect
109109
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
110110
github.com/pmezard/go-difflib v1.0.0 // indirect
111-
github.com/prometheus/client_golang v1.20.5 // indirect
111+
github.com/prometheus/client_golang v1.21.1 // indirect
112112
github.com/prometheus/client_model v0.6.1 // indirect
113-
github.com/prometheus/common v0.55.0 // indirect
113+
github.com/prometheus/common v0.62.0 // indirect
114114
github.com/prometheus/procfs v0.15.1 // indirect
115115
github.com/rs/xid v1.6.0 // indirect
116116
github.com/russross/blackfriday/v2 v2.1.0 // indirect
@@ -132,16 +132,16 @@ require (
132132
go.opentelemetry.io/otel/metric v1.34.0 // indirect
133133
go.opentelemetry.io/otel/trace v1.34.0 // indirect
134134
golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc // indirect
135-
golang.org/x/net v0.36.0 // indirect
136-
golang.org/x/oauth2 v0.26.0 // indirect
135+
golang.org/x/net v0.37.0 // indirect
136+
golang.org/x/oauth2 v0.28.0 // indirect
137137
golang.org/x/sync v0.12.0 // indirect
138138
golang.org/x/text v0.23.0 // indirect
139139
golang.org/x/time v0.10.0 // indirect
140-
google.golang.org/api v0.223.0 // indirect
141-
google.golang.org/genproto v0.0.0-20250122153221-138b5a5a4fd4 // indirect
142-
google.golang.org/genproto/googleapis/api v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
143-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
144-
google.golang.org/grpc v1.70.0 // indirect
140+
google.golang.org/api v0.224.0 // indirect
141+
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
142+
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
143+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
144+
google.golang.org/grpc v1.71.0 // indirect
145145
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1 // indirect
146146
gopkg.in/yaml.v3 v3.0.1 // indirect
147147
howett.net/plist v1.0.0 // indirect

0 commit comments

Comments
 (0)