mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
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:
parent
02a0e63d8b
commit
5909d3f4b7
3 changed files with 33 additions and 33 deletions
4
.github/actions/set-up-gofumpt/action.yml
vendored
4
.github/actions/set-up-gofumpt/action.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
2
.github/actions/set-up-gotestsum/action.yml
vendored
2
.github/actions/set-up-gotestsum/action.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue