This is an automated email from the ASF dual-hosted git repository.
zuston 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 b2fe15286 [MINOR] chore: fix kubernetes ci pipeline (#1368)
b2fe15286 is described below
commit b2fe152869f3308b1b112f258ede7bdbf94b3907
Author: xianjingfeng <[email protected]>
AuthorDate: Wed Dec 13 14:22:47 2023 +0800
[MINOR] chore: fix kubernetes ci pipeline (#1368)
### What changes were proposed in this pull request?
Specify the version of `goimports`.
### Why are the changes needed?
fix kubernetes ci pipeline.
https://github.com/apache/incubator-uniffle/actions/runs/7190065186/job/19582604526
### 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 a59454347..96110e428 100644
--- a/deploy/kubernetes/operator/Makefile
+++ b/deploy/kubernetes/operator/Makefile
@@ -121,7 +121,7 @@ envtest: ## Download envtest-setup locally if necessary.
GOIMPORTS = $(LOCAL_DIR)/goimports
.PHONY: goimports
goimports: ## Download goimports locally if necessary.
- $(call go-get-tool,$(GOIMPORTS),golang.org/x/tools/cmd/goimports@latest)
+ $(call
go-get-tool,$(GOIMPORTS),golang.org/x/tools/cmd/[email protected])
$(GOIMPORTS) -local
github.com/apache/incubator-uniffle/deploy/kubernetes/operator -w .
REVIVE = $(LOCAL_DIR)/revive