Skip to content

Commit a55a0fd

Browse files
authored
build: update toolchain to Go 1.25.3 (#26949)
We recently updated to Go 1.25.2 but upstream just released a fix for a TLS certificate validation that the security patch introduced. Let's upgrade to 1.25.3 before we ship the 1.11.0 beta. Ref: #26909 Ref: https://go.dev/doc/devel/release#go1.25.3
1 parent 7d69c5f commit a55a0fd

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.changelog/26949.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
build: Updated toolchain to Go 1.25.3 to address bug in TLS certificate validation
3+
```

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.25.2
1+
1.25.3

contributing/README.md

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

5353
Developing without Vagrant
5454
---
55-
1. Install [Go 1.25.2+](https://golang.org/) *(Note: `gcc-go` is not supported)*
55+
1. Install [Go 1.25.3+](https://golang.org/) *(Note: `gcc-go` is not supported)*
5656
1. Clone this repo
5757
```sh
5858
$ 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.25.2
3+
go 1.25.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.25.2"
24+
local go_version="1.25.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.25.2"
59+
local go_version="1.25.3"
6060
local download=
6161
6262
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

0 commit comments

Comments
 (0)