This is an automated email from the ASF dual-hosted git repository.
roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 6bfbbc2c3 [MINOR] Fix kubernetest CI pipeline (#1227)
6bfbbc2c3 is described below
commit 6bfbbc2c3f9aef5ac2bf7c59e84baf7f2ffdddd3
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