From d5061ef4525893cec2a0e79f5c0d4ff5a09f10bd Mon Sep 17 00:00:00 2001 From: minikube-bot Date: Mon, 10 Apr 2023 10:06:38 +0000 Subject: [PATCH] CI: Update gotestsum from v1.9.0 to v1.10.0 --- hack/jenkins/common.ps1 | 2 +- hack/jenkins/installers/check_install_gotestsum.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/jenkins/common.ps1 b/hack/jenkins/common.ps1 index b1b233bf41..e66941bedb 100644 --- a/hack/jenkins/common.ps1 +++ b/hack/jenkins/common.ps1 @@ -69,7 +69,7 @@ gsutil.cmd -m cp -r gs://minikube-builds/$env:MINIKUBE_LOCATION/installers/check # Download gopogh and gotestsum go install github.com/medyagh/gopogh/cmd/gopogh@v0.16.0 -go install gotest.tools/gotestsum@v1.9.0 +go install gotest.tools/gotestsum@v1.10.0 # temporary: remove the old install of gopogh & gotestsum as it's taking priority over our current install, preventing updating if (Test-Path "C:\Go") { Remove-Item "C:\Go" -Recurse -Force diff --git a/hack/jenkins/installers/check_install_gotestsum.sh b/hack/jenkins/installers/check_install_gotestsum.sh index aef342006a..69f018f94a 100755 --- a/hack/jenkins/installers/check_install_gotestsum.sh +++ b/hack/jenkins/installers/check_install_gotestsum.sh @@ -18,7 +18,7 @@ set -eux -o pipefail function install_gotestsum() { rm -f $(which gotestsum) - GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.9.0 + GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.10.0 } which gotestsum || install_gotestsum