From b36c77781fd134169686074ee33aabafd2ba8388 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Tue, 12 Nov 2024 10:59:02 -0600 Subject: [PATCH] build: update to go1.23.3 (#24419) https://github.com/golang/go/issues?q=milestone%3AGo1.23.3+label%3ACherryPickApproved --- .go-version | 2 +- contributing/README.md | 2 +- scripts/linux-priv-go.sh | 2 +- scripts/release/mac-remote-build | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.go-version b/.go-version index 14bee92c9..ac1df3fce 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.23.2 +1.23.3 diff --git a/contributing/README.md b/contributing/README.md index f6440ff0b..dda331781 100644 --- a/contributing/README.md +++ b/contributing/README.md @@ -33,7 +33,7 @@ A development environment is supplied via Vagrant to make getting started easier Developing without Vagrant --- -1. Install [Go 1.23.2+](https://golang.org/) *(Note: `gcc-go` is not supported)* +1. Install [Go 1.23.3+](https://golang.org/) *(Note: `gcc-go` is not supported)* 1. Clone this repo ```sh $ git clone https://github.com/hashicorp/nomad.git diff --git a/scripts/linux-priv-go.sh b/scripts/linux-priv-go.sh index 8e07cf655..ef00e1e4a 100755 --- a/scripts/linux-priv-go.sh +++ b/scripts/linux-priv-go.sh @@ -21,7 +21,7 @@ case $(arch) in esac function install_go() { - local go_version="1.23.2" + local go_version="1.23.3" local download="https://storage.googleapis.com/golang/go${go_version}.linux-${ARCH}.tar.gz" if go version 2>&1 | grep -q "${go_version}"; then diff --git a/scripts/release/mac-remote-build b/scripts/release/mac-remote-build index 878731e69..0e3c05e20 100755 --- a/scripts/release/mac-remote-build +++ b/scripts/release/mac-remote-build @@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad" mkdir -p "${TMP_WORKSPACE}/tmp" install_go() { - local go_version="1.23.2" + local go_version="1.23.3" local download= download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"