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

chore: pin gomock in client module #53

Merged
merged 1 commit into from
Jan 20, 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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ generate: mockgen ## Generate gomocks.
-copyright_file=hack/copyright_header.txt \
-source=service/protos/bootstrap_grpc.pb.go \
-destination=service/protos/mocks/mock_client.go \
-package=mocks github.com/Azure/aks-tls-bootstrap-client/service/protos \
-package=mocks github.com/Azure/aks-secure-tls-bootstrap/service/protos \
SecureTLSBootstrapServiceClient
go generate ./...

Expand Down
4 changes: 2 additions & 2 deletions client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ module github.com/Azure/aks-secure-tls-bootstrap/client
go 1.21.3

require (
github.com/Azure/aks-secure-tls-bootstrap/service v0.0.0-20240120000347-fb98fd5c2c50
github.com/Azure/aks-secure-tls-bootstrap/service v0.1.0-alpha.0
github.com/Azure/go-autorest/autorest v0.11.29
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1
github.com/avast/retry-go/v4 v4.5.1
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.31.0
github.com/spf13/cobra v1.8.0
go.uber.org/mock v0.4.0
go.uber.org/mock v0.2.0
go.uber.org/zap v1.26.0
golang.org/x/oauth2 v0.16.0
google.golang.org/grpc v1.60.1
Expand Down
4 changes: 4 additions & 0 deletions client/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGB
cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA=
github.com/Azure/aks-secure-tls-bootstrap/service v0.0.0-20240120000347-fb98fd5c2c50 h1:SnP8vj1rVA+EK/zUQJU5iun03dp2A7h07AY0TDkVYfk=
github.com/Azure/aks-secure-tls-bootstrap/service v0.0.0-20240120000347-fb98fd5c2c50/go.mod h1:Q5qtXogTFBE/annwy4ZNOoMDKroU7JL2a+UF+60ATbc=
github.com/Azure/aks-secure-tls-bootstrap/service v0.1.0-alpha.0 h1:Cfd5FRHsqSiOXPjiVFBHnQBjFFJtssqDhY3THFdcy8Y=
github.com/Azure/aks-secure-tls-bootstrap/service v0.1.0-alpha.0/go.mod h1:crmbo78vmB7PioBQg5YQ0ygp1qlxMpbfo1CMzsH2EkQ=
github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs=
github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24=
github.com/Azure/go-autorest/autorest v0.11.29 h1:I4+HL/JDvErx2LjyzaVxllw2lRDB5/BT2Bm4g20iqYw=
Expand Down Expand Up @@ -129,6 +131,8 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk=
go.uber.org/goleak v1.2.0/go.mod h1:XJYK+MuIchqpmGmUSAzotztawfKvYLUIgg7guXrwVUo=
go.uber.org/mock v0.2.0 h1:TaP3xedm7JaAgScZO7tlvlKrqT0p7I6OsdGB5YNSMDU=
go.uber.org/mock v0.2.0/go.mod h1:J0y0rp9L3xiff1+ZBfKxlC1fz2+aO16tw0tsDOixfuM=
go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
go.uber.org/mock v0.4.0/go.mod h1:a6FSlNadKUHUa9IP5Vyt1zh4fC7uAwxMutEAscFbkZc=
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
Expand Down
Loading