Skip to content

Commit c764b3d

Browse files
committed
update to go1.23.2
Signed-off-by: cpanato <ctadeu@gmail.com>
1 parent e1c1ac4 commit c764b3d

File tree

1 file changed

+22
-24
lines changed

1 file changed

+22
-24
lines changed

go.mod

+22-24
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,46 @@
11
module github.com/sigstore/policy-controller
22

3-
go 1.23
4-
5-
toolchain go1.23.1
3+
go 1.23.2
64

75
require (
86
github.com/aws/aws-sdk-go v1.55.5
97
github.com/aws/aws-sdk-go-v2 v1.30.4 // indirect
10-
github.com/cenkalti/backoff/v3 v3.2.2
8+
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
119
github.com/golang/protobuf v1.5.4 // indirect
1210
github.com/golang/snappy v0.0.4 // indirect
1311
github.com/google/go-cmp v0.6.0
1412
github.com/google/go-containerregistry v0.20.2
1513
github.com/google/go-containerregistry/pkg/authn/k8schain v0.0.0-20230919002926-dbcd01c402b2
1614
github.com/google/go-containerregistry/pkg/authn/kubernetes v0.0.0-20230919002926-dbcd01c402b2
17-
github.com/hashicorp/errwrap v1.1.0
18-
github.com/hashicorp/go-cleanhttp v0.5.2
19-
github.com/hashicorp/go-multierror v1.1.1
20-
github.com/hashicorp/go-retryablehttp v0.7.7
21-
github.com/hashicorp/go-rootcerts v1.0.2
22-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8
23-
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
24-
github.com/hashicorp/go-sockaddr v1.0.6
25-
github.com/hashicorp/golang-lru v1.0.2
26-
github.com/hashicorp/hcl v1.0.1-vault-5
15+
github.com/hashicorp/errwrap v1.1.0 // indirect
16+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
17+
github.com/hashicorp/go-multierror v1.1.1 // indirect
18+
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
19+
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
20+
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect
21+
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
22+
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
23+
github.com/hashicorp/golang-lru v1.0.2 // indirect
24+
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
2725
github.com/kelseyhightower/envconfig v1.4.0
28-
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec
29-
github.com/mitchellh/go-homedir v1.1.0
30-
github.com/mitchellh/mapstructure v1.5.0
31-
github.com/ryanuber/go-glob v1.0.0
26+
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect
27+
github.com/mitchellh/go-homedir v1.1.0 // indirect
28+
github.com/mitchellh/mapstructure v1.5.0 // indirect
29+
github.com/ryanuber/go-glob v1.0.0 // indirect
3230
github.com/sigstore/cosign/v2 v2.4.0
3331
github.com/sigstore/rekor v1.3.6
3432
github.com/sigstore/sigstore v1.8.9
3533
github.com/stretchr/testify v1.9.0
3634
github.com/theupdateframework/go-tuf v0.7.0
37-
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399
35+
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
3836
go.uber.org/zap v1.27.0
39-
golang.org/x/crypto v0.28.0
40-
golang.org/x/net v0.30.0
37+
golang.org/x/crypto v0.28.0 // indirect
38+
golang.org/x/net v0.30.0 // indirect
4139
golang.org/x/sys v0.26.0 // indirect
42-
golang.org/x/time v0.7.0
40+
golang.org/x/time v0.7.0 // indirect
4341
google.golang.org/grpc v1.66.0 // indirect
4442
google.golang.org/protobuf v1.35.1
45-
gopkg.in/yaml.v3 v3.0.1
43+
gopkg.in/yaml.v3 v3.0.1 // indirect
4644
k8s.io/api v0.31.1
4745
k8s.io/apimachinery v0.31.1
4846
k8s.io/client-go v0.31.1
@@ -63,7 +61,6 @@ require (
6361
github.com/docker/docker v27.3.1+incompatible
6462
github.com/docker/docker-credential-helpers v0.8.2
6563
github.com/docker/go-connections v0.5.0
66-
github.com/go-jose/go-jose/v4 v4.0.4
6764
github.com/sigstore/protobuf-specs v0.3.2
6865
github.com/sigstore/scaffolding v0.7.9
6966
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.8.9
@@ -162,6 +159,7 @@ require (
162159
github.com/go-chi/chi v4.1.2+incompatible // indirect
163160
github.com/go-ini/ini v1.67.0 // indirect
164161
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
162+
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
165163
github.com/go-kit/log v0.2.1 // indirect
166164
github.com/go-logfmt/logfmt v0.5.1 // indirect
167165
github.com/go-logr/logr v1.4.2 // indirect

0 commit comments

Comments
 (0)