From 596e697961c933d8fb6acc292d3b96f1206a5d78 Mon Sep 17 00:00:00 2001 From: Nitin Goyal Date: Mon, 30 Sep 2024 20:11:46 +0530 Subject: [PATCH] makefile: use direct proxy before goproxy IBM has published multiple 1.6.0 releases, and the goproxy server is still holding outdated 1.6.0 release information. To address this issue, we will begin using the direct proxy instead of the goproxy server. Signed-off-by: Nitin Goyal --- hack/make-project-vars.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make-project-vars.mk b/hack/make-project-vars.mk index e5485a111..c2fc53c8e 100644 --- a/hack/make-project-vars.mk +++ b/hack/make-project-vars.mk @@ -5,7 +5,7 @@ ENVTEST_ASSETS_DIR := $(PROJECT_DIR)/testbin GOBIN ?= $(BIN_DIR) GOOS ?= $(shell go env GOOS) GOARCH ?= $(shell go env GOARCH) -GOPROXY ?= https://proxy.golang.org/ +GOPROXY ?= direct,https://proxy.golang.org GO_LINT_IMG_LOCATION ?= golangci/golangci-lint GO_LINT_IMG_TAG ?= v1.49.0