diff --git a/.buildkite/scripts/common.sh b/.buildkite/scripts/common.sh index 5bf4ac36c..0d237ae92 100755 --- a/.buildkite/scripts/common.sh +++ b/.buildkite/scripts/common.sh @@ -12,11 +12,11 @@ create_workspace() { install_go_dependencies() { local install_packages=( - "github.com/magefile/mage" - "github.com/elastic/go-licenser" - "golang.org/x/tools/cmd/goimports" - "github.com/jstemmer/go-junit-report" - "gotest.tools/gotestsum" + "github.com/magefile/mage@latest" + "github.com/elastic/go-licenser@latest" + "golang.org/x/tools/cmd/goimports@1.24" + "github.com/jstemmer/go-junit-report@latest" + "gotest.tools/gotestsum@latest" ) for pkg in "${install_packages[@]}"; do go install "${pkg}@latest"