From c6745ea7a9f374145a1329bdfd3576cebb0a8f6c Mon Sep 17 00:00:00 2001 From: Ashley Davis Date: Mon, 27 Jun 2022 17:16:26 +0100 Subject: [PATCH] move VENDORED_GO_VERSION up with other versions Signed-off-by: Ashley Davis --- make/tools.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/tools.mk b/make/tools.mk index ecd0da4ea..9058f74ed 100644 --- a/make/tools.mk +++ b/make/tools.mk @@ -33,6 +33,8 @@ K8S_CODEGEN_VERSION=v0.24.2 KUBEBUILDER_ASSETS_VERSION=1.22.0 +VENDORED_GO_VERSION := 1.18.3 + # When switching branches which use different versions of the tools, we # need a way to re-trigger the symlinking from $(BINDIR)/downloaded to $(BINDIR)/tools. $(BINDIR)/scratch/%_VERSION: FORCE | $(BINDIR)/scratch @@ -80,8 +82,6 @@ GOTEST=CGO_ENABLED=$(CGO_ENABLED) $(GO) test GOTESTSUM=CGO_ENABLED=$(CGO_ENABLED) ./$(BINDIR)/tools/gotestsum -VENDORED_GO_VERSION := 1.18.3 - .PHONY: vendor-go ## By default, this Makefile uses the system's Go. You can use a "vendored" ## version of Go that will get downloaded by running this command once. To