CI: Update gotestsum from v1.12.1 to v1.12.2 (#20738)

pull/20742/head
minikube-bot 2025-05-12 10:18:09 -07:00 committed by GitHub
parent 8575beea95
commit c8b44b65a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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.29.0 go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0
go install gotest.tools/gotestsum@v1.12.1 go install gotest.tools/gotestsum@v1.12.2
# 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.12.1 GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.12.2
} }
which gotestsum || install_gotestsum which gotestsum || install_gotestsum