This is an automated email from the ASF dual-hosted git repository. roryqi pushed a commit to branch branch-0.8 in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
commit 09dea5f4eb6119717a51ae70d6098fed4347f8d7 Author: roryqi <[email protected]> AuthorDate: Mon Oct 9 10:40:50 2023 +0800 [MINOR] Fix kubernetest CI pipeline (#1227) ### What changes were proposed in this pull request? Use a fixed version instead of latest version. ### Why are the changes needed? Fix the ci error of master branch ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? CI passed. --- deploy/kubernetes/operator/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/kubernetes/operator/Makefile b/deploy/kubernetes/operator/Makefile index 4698d3953..a59454347 100644 --- a/deploy/kubernetes/operator/Makefile +++ b/deploy/kubernetes/operator/Makefile @@ -116,7 +116,7 @@ kustomize: ## Download kustomize locally if necessary. ENVTEST = $(LOCAL_DIR)/setup-envtest .PHONY: envtest envtest: ## Download envtest-setup locally if necessary. - $(call go-get-tool,$(ENVTEST),sigs.k8s.io/controller-runtime/tools/setup-envtest@latest) + $(call go-get-tool,$(ENVTEST),sigs.k8s.io/controller-runtime/tools/[email protected]) GOIMPORTS = $(LOCAL_DIR)/goimports .PHONY: goimports
