Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Go 1.21.5 #19320

Merged
merged 2 commits into from Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/19320.txt
@@ -0,0 +1,3 @@
```release-note:security
build: Update to go1.21.5 to resolve Windows path validation CVE in Go
```
2 changes: 1 addition & 1 deletion .go-version
@@ -1 +1 @@
1.21.4
1.21.5
2 changes: 1 addition & 1 deletion contributing/README.md
Expand Up @@ -30,7 +30,7 @@ A development environment is supplied via Vagrant to make getting started easier

Developing without Vagrant
---
1. Install [Go 1.21.4+](https://golang.org/) *(Note: `gcc-go` is not supported)*
1. Install [Go 1.21.5+](https://golang.org/) *(Note: `gcc-go` is not supported)*
1. Clone this repo
```sh
$ git clone https://github.com/hashicorp/nomad.git
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux-priv-go.sh
Expand Up @@ -21,7 +21,7 @@ case $(arch) in
esac

function install_go() {
local go_version="1.21.4"
local go_version="1.21.5"
local download="https://storage.googleapis.com/golang/go${go_version}.linux-${ARCH}.tar.gz"

if go version 2>&1 | grep -q "${go_version}"; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/mac-remote-build
Expand Up @@ -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.21.4"
local go_version="1.21.5"
local download=

download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"
Expand Down