Skip to content

Commit 7cb90dc

Browse files
committed
fix: downgrade envtest version due to missing files
1 parent f8651e8 commit 7cb90dc

File tree

4 files changed

+14
-113
lines changed

4 files changed

+14
-113
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
6060
# renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
6161
CONTROLLER_TOOLS_VERSION ?= v0.20.1
6262
# renovate: datasource=github-releases depName=kubernetes/kubernetes
63-
ENVTEST_K8S_VERSION ?= 1.35.1
63+
ENVTEST_K8S_VERSION ?= 1.35.0
6464

6565
# Image URL to use all building/pushing image targets
6666
IMG ?= controller:latest

config/crd/bases/hydra.ory.sh_oauth2clients.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.19.0
6+
controller-gen.kubebuilder.io/version: v0.20.1
77
name: oauth2clients.hydra.ory.sh
88
spec:
99
group: hydra.ory.sh

go.mod

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ require (
88
github.com/go-playground/validator/v10 v10.30.1
99
github.com/google/uuid v1.6.0
1010
github.com/onsi/ginkgo v1.16.5
11-
github.com/onsi/ginkgo/v2 v2.28.1
1211
github.com/onsi/gomega v1.39.1
1312
github.com/stretchr/testify v1.11.1
1413
golang.org/x/net v0.50.0
@@ -21,7 +20,6 @@ require (
2120
)
2221

2322
require (
24-
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2523
github.com/beorn7/perks v1.0.1 // indirect
2624
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2725
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -53,7 +51,6 @@ require (
5351
github.com/go-playground/locales v0.14.1 // indirect
5452
github.com/go-playground/universal-translator v0.18.1 // indirect
5553
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
56-
github.com/gogo/protobuf v1.3.2 // indirect
5754
github.com/google/btree v1.1.3 // indirect
5855
github.com/google/gnostic-models v0.7.0 // indirect
5956
github.com/google/go-cmp v0.7.0 // indirect
@@ -66,7 +63,7 @@ require (
6663
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6764
github.com/nxadm/tail v1.4.8 // indirect
6865
github.com/oklog/ulid v1.3.1 // indirect
69-
github.com/pkg/errors v0.9.1 // indirect
66+
github.com/onsi/ginkgo/v2 v2.28.1 // indirect
7067
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7168
github.com/prometheus/client_golang v1.23.2 // indirect
7269
github.com/prometheus/client_model v0.6.2 // indirect

0 commit comments

Comments
 (0)