Merge pull request #16278 from minikube-bot/auto_bump_gotestsum_version

CI: Update gotestsum from v1.9.0 to v1.10.0
pull/16280/head
Steven Powell 2023-04-10 08:58:44 -07:00 committed by GitHub
commit 599babc76b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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