From 7c7f650620c23fb50cf5981ea274ddd28d49b186 Mon Sep 17 00:00:00 2001 From: michaelawyu Date: Mon, 25 Mar 2024 17:23:02 +0800 Subject: [PATCH] fix: (temporarily) use a fixed version of envtest due to Go version mismatches in the latest version (#735) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f372b8d59..d18a20183 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ GOLANGCI_LINT := $(abspath $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT # ENVTEST_K8S_VERSION refers to the version of k8s binary assets to be downloaded by envtest binary. ENVTEST_K8S_VERSION = 1.28.0 # ENVTEST_VER is the version of the ENVTEST binary -ENVTEST_VER = latest +ENVTEST_VER = v0.0.0-20240317073005-bd9ea79e8d18 ENVTEST_BIN := setup-envtest ENVTEST := $(abspath $(TOOLS_BIN_DIR)/$(ENVTEST_BIN)-$(ENVTEST_VER))