Skip to content

Commit d41e37e

Browse files
authored
Bump dependencies for Kubernetes 1.31 (#91)
* Bump dependencies for Kubernetes 1.31 * Add .golangci.yml to extend timeout
1 parent 9ac819d commit d41e37e

File tree

4 files changed

+68
-64
lines changed

4 files changed

+68
-64
lines changed

.golangci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
run:
2+
timeout: 5m

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IMG ?= ghcr.io/pfnet-research/gcp-workload-identity-federation-webhook:$(TAG)
55
IMG_LATEST ?= ghcr.io/pfnet-research/gcp-workload-identity-federation-webhook:latest
66

77
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
8-
ENVTEST_K8S_VERSION = 1.29
8+
ENVTEST_K8S_VERSION = 1.31
99

1010
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
1111
ifeq (,$(shell go env GOBIN))
@@ -134,7 +134,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
134134

135135
## Tool Versions
136136
KUSTOMIZE_VERSION ?= v5.4.2
137-
CONTROLLER_TOOLS_VERSION ?= v0.15.0
137+
CONTROLLER_TOOLS_VERSION ?= v0.16.5
138138

139139
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
140140
.PHONY: kustomize

go.mod

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,64 +10,64 @@ require (
1010
github.com/google/go-cmp v0.6.0
1111
github.com/onsi/ginkgo/v2 v2.22.2
1212
github.com/onsi/gomega v1.36.2
13-
k8s.io/api v0.30.3
14-
k8s.io/apimachinery v0.30.3
15-
k8s.io/client-go v0.30.3
16-
k8s.io/utils v0.0.0-20240102154912-e7106e64919e
17-
sigs.k8s.io/controller-runtime v0.18.4
13+
k8s.io/api v0.31.4
14+
k8s.io/apimachinery v0.31.4
15+
k8s.io/client-go v0.31.4
16+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
17+
sigs.k8s.io/controller-runtime v0.19.4
1818
)
1919

2020
require (
2121
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
23-
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
23+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2424
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2525
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
2626
github.com/fsnotify/fsnotify v1.7.0 // indirect
27+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2728
github.com/go-logr/zapr v1.3.0 // indirect
2829
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2930
github.com/go-openapi/jsonreference v0.20.2 // indirect
30-
github.com/go-openapi/swag v0.22.3 // indirect
31+
github.com/go-openapi/swag v0.22.4 // indirect
3132
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3233
github.com/gogo/protobuf v1.3.2 // indirect
3334
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3435
github.com/golang/protobuf v1.5.4 // indirect
3536
github.com/google/gnostic-models v0.6.8 // indirect
3637
github.com/google/gofuzz v1.2.0 // indirect
3738
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
38-
github.com/google/uuid v1.3.0 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
3940
github.com/imdario/mergo v0.3.6 // indirect
4041
github.com/josharian/intern v1.0.0 // indirect
4142
github.com/json-iterator/go v1.1.12 // indirect
4243
github.com/mailru/easyjson v0.7.7 // indirect
43-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4444
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4545
github.com/modern-go/reflect2 v1.0.2 // indirect
4646
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4747
github.com/pkg/errors v0.9.1 // indirect
48-
github.com/prometheus/client_golang v1.18.0 // indirect
49-
github.com/prometheus/client_model v0.5.0 // indirect
50-
github.com/prometheus/common v0.45.0 // indirect
51-
github.com/prometheus/procfs v0.12.0 // indirect
48+
github.com/prometheus/client_golang v1.19.1 // indirect
49+
github.com/prometheus/client_model v0.6.1 // indirect
50+
github.com/prometheus/common v0.55.0 // indirect
51+
github.com/prometheus/procfs v0.15.1 // indirect
5252
github.com/spf13/pflag v1.0.5 // indirect
53+
github.com/x448/float16 v0.8.4 // indirect
5354
go.uber.org/multierr v1.11.0 // indirect
5455
go.uber.org/zap v1.26.0 // indirect
5556
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
5657
golang.org/x/net v0.33.0 // indirect
57-
golang.org/x/oauth2 v0.12.0 // indirect
58+
golang.org/x/oauth2 v0.21.0 // indirect
5859
golang.org/x/sys v0.28.0 // indirect
5960
golang.org/x/term v0.27.0 // indirect
6061
golang.org/x/text v0.21.0 // indirect
6162
golang.org/x/time v0.3.0 // indirect
6263
golang.org/x/tools v0.28.0 // indirect
6364
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
64-
google.golang.org/appengine v1.6.7 // indirect
6565
google.golang.org/protobuf v1.36.1 // indirect
6666
gopkg.in/inf.v0 v0.9.1 // indirect
6767
gopkg.in/yaml.v2 v2.4.0 // indirect
6868
gopkg.in/yaml.v3 v3.0.1 // indirect
69-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
70-
k8s.io/klog/v2 v2.120.1 // indirect
69+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
70+
k8s.io/klog/v2 v2.130.1 // indirect
7171
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
7272
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7373
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)