Skip to content

Commit 2accffc

Browse files
committed
fix service account handler
1 parent 7161fa8 commit 2accffc

File tree

3 files changed

+123
-115
lines changed

3 files changed

+123
-115
lines changed

go.mod

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@ module github.com/GoogleContainerTools/gcp-auth-webhook
33
go 1.18
44

55
require (
6-
k8s.io/api v0.20.4
7-
k8s.io/apimachinery v0.20.4
6+
k8s.io/api v0.24.1
7+
k8s.io/apimachinery v0.24.1
88
)
99

1010
require (
11-
github.com/go-logr/logr v0.2.0 // indirect
11+
github.com/go-logr/logr v1.2.0 // indirect
1212
github.com/gogo/protobuf v1.3.2 // indirect
1313
github.com/google/gofuzz v1.1.0 // indirect
14-
github.com/json-iterator/go v1.1.10 // indirect
14+
github.com/json-iterator/go v1.1.12 // indirect
1515
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
16-
github.com/modern-go/reflect2 v1.0.1 // indirect
17-
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
18-
golang.org/x/text v0.3.4 // indirect
16+
github.com/modern-go/reflect2 v1.0.2 // indirect
17+
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
18+
golang.org/x/text v0.3.7 // indirect
1919
gopkg.in/inf.v0 v0.9.1 // indirect
20-
gopkg.in/yaml.v2 v2.2.8 // indirect
21-
k8s.io/klog/v2 v2.4.0 // indirect
22-
sigs.k8s.io/structured-merge-diff/v4 v4.0.2 // indirect
20+
gopkg.in/yaml.v2 v2.4.0 // indirect
21+
k8s.io/klog/v2 v2.60.1 // indirect
22+
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
23+
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
24+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
2325
sigs.k8s.io/yaml v1.2.0 // indirect
2426
)

0 commit comments

Comments
 (0)