Merge pull request #16859 from minikube-bot/auto_bump_gotestsum_version

CI: Update gotestsum from v1.10.0 to v1.10.1
pull/16860/head
Medya Ghazizadeh 2023-07-10 08:53:55 -07:00 committed by GitHub
commit a7a1ba4cca
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 # Download gopogh and gotestsum
go install github.com/medyagh/gopogh/cmd/gopogh@v0.17.0 go install github.com/medyagh/gopogh/cmd/gopogh@v0.17.0
go install gotest.tools/gotestsum@v1.10.0 go install gotest.tools/gotestsum@v1.10.1
# temporary: remove the old install of gopogh & gotestsum as it's taking priority over our current install, preventing updating # temporary: remove the old install of gopogh & gotestsum as it's taking priority over our current install, preventing updating
if (Test-Path "C:\Go") { if (Test-Path "C:\Go") {
Remove-Item "C:\Go" -Recurse -Force Remove-Item "C:\Go" -Recurse -Force

View File

@ -18,7 +18,7 @@ set -eux -o pipefail
function install_gotestsum() { function install_gotestsum() {
rm -f $(which gotestsum) rm -f $(which gotestsum)
GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.10.0 GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.10.1
} }
which gotestsum || install_gotestsum which gotestsum || install_gotestsum