actions(gofumpt): pin to gofumpt v0.8.0 (#9069) (#9075)

As part of this we also update the pin of gotestsum to 1.12.3 to allow
for building it with Go 1.25.

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
This commit is contained in:
Vault Automation 2025-09-03 10:26:30 -06:00 committed by GitHub
parent 02a0e63d8b
commit 5909d3f4b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 33 additions and 33 deletions

View file

@ -11,9 +11,9 @@ inputs:
type: boolean
default: "$HOME/bin/gofumpt"
version:
description: "The version to install (default: latest)"
description: "The version to install (default: v0.8.0)"
type: string
default: "v0.7.0"
default: "v0.8.0"
outputs:
destination:

View file

@ -13,7 +13,7 @@ inputs:
version:
description: "The version to install (default: latest)"
type: string
default: "v1.12.0"
default: "v1.12.3"
outputs:
destination:

View file

@ -49,8 +49,8 @@ install_external() {
golang.org/x/tools/cmd/goimports@v0.30.0
google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.5
google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.5.1
gotest.tools/gotestsum@v1.12.0
mvdan.cc/gofumpt@v0.7.0
gotest.tools/gotestsum@v1.12.3
mvdan.cc/gofumpt@v0.8.0
mvdan.cc/sh/v3/cmd/shfmt@v3.10.0
)
@ -156,34 +156,34 @@ check() {
main() {
case $1 in
install-external)
install_external
;;
install-internal)
install_internal
;;
install-pipeline)
install_pipeline
;;
check-external)
check_external
;;
check-internal)
check_internal
;;
check-pipeline)
check_pipeline
;;
install)
install
;;
check)
check
;;
*)
echo "unknown sub-command" >&2
exit 1
;;
install-external)
install_external
;;
install-internal)
install_internal
;;
install-pipeline)
install_pipeline
;;
check-external)
check_external
;;
check-internal)
check_internal
;;
check-pipeline)
check_pipeline
;;
install)
install
;;
check)
check
;;
*)
echo "unknown sub-command" >&2
exit 1
;;
esac
}