[Makefile] fix gci tool to fixed version (latest one that worked) (#1151)

This commit is contained in:
Johannes Batzill 2024-03-27 16:30:29 +00:00 committed by Harness
parent e96ab4159b
commit 2f5e79cee0

View File

@ -125,7 +125,7 @@ $(GOBIN)/protoc-gen-go-grpc:
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2
$(GOBIN)/gci:
go install github.com/daixiang0/gci@latest
go install github.com/daixiang0/gci@v0.13.1
help: ## show help message
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% 0-9a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)