Skip to content

Commit d594384

Browse files
authored
upgrade Go to 1.26.3 (#27924)
Pick up today's Go toolchain and stdlib vulnerability fixes Ref: https://groups.google.com/g/golang-announce/c/qcCIEXso47M/m/2bOHLAuTBQAJ
1 parent d2e3a9d commit d594384

6 files changed

Lines changed: 8 additions & 5 deletions

File tree

.changelog/27924.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:improvement
2+
build: Update Go toolchain to 1.26.3
3+
```

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.26.2
1+
1.26.3

contributing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ A development environment is supplied via Vagrant to make getting started easier
5555

5656
Developing without Vagrant
5757
---
58-
1. Install [Go 1.26.2+](https://golang.org/) *(Note: `gcc-go` is not supported)*
58+
1. Install [Go 1.26.3+](https://golang.org/) *(Note: `gcc-go` is not supported)*
5959
1. Clone this repo
6060
```sh
6161
$ git clone https://github.com/hashicorp/nomad.git

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/nomad
22

3-
go 1.26.2
3+
go 1.26.3
44

55
// Pinned dependencies are noted in github.com/hashicorp/nomad/issues/11826.
66
replace (

scripts/linux-priv-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ case $(arch) in
2121
esac
2222

2323
function install_go() {
24-
local go_version="1.26.2"
24+
local go_version="1.26.3"
2525
local download="https://storage.googleapis.com/golang/go${go_version}.linux-${ARCH}.tar.gz"
2626

2727
if go version 2>&1 | grep -q "${go_version}"; then

scripts/release/mac-remote-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
5656
mkdir -p "${TMP_WORKSPACE}/tmp"
5757
5858
install_go() {
59-
local go_version="1.26.2"
59+
local go_version="1.26.3"
6060
local download=
6161
6262
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

0 commit comments

Comments
 (0)