From a2ccf09c8001716cc50e4531fe1d1dd6644e06c3 Mon Sep 17 00:00:00 2001 From: Ilya Zuyev Date: Tue, 19 Jan 2021 16:30:28 -0800 Subject: [PATCH] fix update-gopogh-version comment and update gopogh version in jenkins scripts --- Makefile | 2 +- hack/jenkins/common.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6ecc28a953..6941b2ccce 100644 --- a/Makefile +++ b/Makefile @@ -848,6 +848,6 @@ else endif .PHONY: update-gopogh-version -update-gopogh-version: ## Update GitHub Action workflows to use the latest version of Gopogh +update-gopogh-version: ## update gopogh version (cd hack/update/gopogh_version && \ go run update_gopogh_version.go) diff --git a/hack/jenkins/common.sh b/hack/jenkins/common.sh index 07673308a0..ecdcb6dc5d 100755 --- a/hack/jenkins/common.sh +++ b/hack/jenkins/common.sh @@ -352,9 +352,9 @@ fi echo ">> Installing gopogh" if [ "$(uname)" != "Darwin" ]; then - curl -LO https://github.com/medyagh/gopogh/releases/download/v0.3.0/gopogh-linux-amd64 && sudo install gopogh-linux-amd64 /usr/local/bin/gopogh + curl -LO https://github.com/medyagh/gopogh/releases/download/v0.4.0/gopogh-linux-amd64 && sudo install gopogh-linux-amd64 /usr/local/bin/gopogh else - curl -LO https://github.com/medyagh/gopogh/releases/download/v0.3.0/gopogh-darwin-amd64 && sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh + curl -LO https://github.com/medyagh/gopogh/releases/download/v0.4.0/gopogh-darwin-amd64 && sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh fi echo ">> Running gopogh"