Skip to content

Commit 11a1297

Browse files
Update Go Modules: Fixes Docker Example
go.mod: update requirements to fix build errors in docker example go.sum: hashes updated to match updated requirements
1 parent 8d229b9 commit 11a1297

File tree

2 files changed

+535
-20
lines changed

2 files changed

+535
-20
lines changed

go.mod

+14-5
Original file line numberDiff line numberDiff line change
@@ -12,36 +12,45 @@ require (
1212
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
1313
github.com/Masterminds/sprig/v3 v3.2.2
1414
github.com/ThalesIgnite/crypto11 v1.2.4
15-
github.com/aws/aws-sdk-go v1.30.29
15+
github.com/aws/aws-sdk-go v1.37.0
1616
github.com/dgraph-io/ristretto v0.0.4-0.20200906165740-41ebdbffecfd // indirect
17+
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
1718
github.com/go-chi/chi v4.0.2+incompatible
1819
github.com/go-kit/kit v0.10.0 // indirect
1920
github.com/go-piv/piv-go v1.7.0
21+
github.com/go-sql-driver/mysql v1.6.0 // indirect
22+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2023
github.com/golang/mock v1.6.0
2124
github.com/google/uuid v1.3.0
2225
github.com/googleapis/gax-go/v2 v2.0.5
23-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
2426
github.com/mattn/go-colorable v0.1.8 // indirect
2527
github.com/mattn/go-isatty v0.0.13 // indirect
2628
github.com/micromdm/scep/v2 v2.1.0
29+
github.com/miekg/pkcs11 v1.0.3 // indirect
2730
github.com/newrelic/go-agent v2.15.0+incompatible
2831
github.com/pkg/errors v0.9.1
2932
github.com/rs/xid v1.2.1
30-
github.com/sirupsen/logrus v1.4.2
33+
github.com/sirupsen/logrus v1.7.0
3134
github.com/smallstep/assert v0.0.0-20200723003110-82e2b9b3b262
35+
github.com/smallstep/cli v0.18.0 // indirect
3236
github.com/smallstep/nosql v0.3.9
33-
github.com/urfave/cli v1.22.4
37+
github.com/stretchr/testify v1.7.0 // indirect
38+
github.com/urfave/cli v1.22.5
39+
go.etcd.io/bbolt v1.3.6 // indirect
3440
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
3541
go.step.sm/cli-utils v0.7.0
3642
go.step.sm/crypto v0.13.0
3743
go.step.sm/linkedca v0.7.0
3844
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272
3945
golang.org/x/net v0.0.0-20210913180222-943fd674d43e
40-
google.golang.org/api v0.47.0
46+
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
47+
google.golang.org/api v0.48.0
4148
google.golang.org/genproto v0.0.0-20210719143636-1d5a45f8e492
4249
google.golang.org/grpc v1.39.0
4350
google.golang.org/protobuf v1.27.1
4451
gopkg.in/square/go-jose.v2 v2.6.0
52+
gopkg.in/yaml.v2 v2.4.0 // indirect
53+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
4554
)
4655

4756
//replace github.com/smallstep/nosql => ../nosql

0 commit comments

Comments
 (0)