Skip to content

Commit ba70331

Browse files
author
Mahmood Ali
committed
use golang 1.12.16
1 parent c8a49ee commit ba70331

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ executors:
7979
go:
8080
working_directory: /go/src/github.com/hashicorp/nomad
8181
docker:
82-
- image: golang:1.12.13
82+
- image: golang:1.12.16
8383
go-machine:
8484
working_directory: ~/go/src/github.com/hashicorp/nomad
8585
machine:
@@ -306,7 +306,7 @@ commands:
306306
parameters:
307307
version:
308308
type: string
309-
default: "1.12.13"
309+
default: "1.12.16"
310310
steps:
311311
- run:
312312
name: install golang << parameters.version >>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ SECURITY:
55
* agent: Added unauthenticated connection timeouts and limits to prevent resource exhaustion. CVE-2020-7218 [[GH-7002](https://github.com/hashicorp/nomad/issues/7002)]
66
* server: Fixed insufficient validation for role and region for RPC connections when TLS enabled. CVE-2020-7956 [[GH-7003](https://github.com/hashicorp/nomad/issues/7003)]
77

8+
IMPROVEMENTS:
9+
10+
* build: Updated to Go 1.12.16
11+
812
## 0.10.2 (December 4, 2019)
913

1014
FEATURES:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Who Uses Nomad
138138
Contributing to Nomad
139139
--------------------
140140

141-
If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.13+ is *required*, and `gcc-go` is not supported).
141+
If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.16+ is *required*, and `gcc-go` is not supported).
142142

143143
See the [`contributing`](contributing/) directory for more developer documentation.
144144

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ install:
2323
cd %APPVEYOR_BUILD_FOLDER%
2424
rmdir /Q/S C:\go
2525
26-
# install go 1.12.13 to match version used for cutting a release
26+
# install go 1.12.16 to match version used for cutting a release
2727
- cmd: |
2828
mkdir c:\go
29-
appveyor DownloadFile "https://dl.google.com/go/go1.12.13.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
29+
appveyor DownloadFile "https://dl.google.com/go/go1.12.16.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
3030
3131
- ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\
3232

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.12.13"
59+
local go_version="1.12.16"
6060
local download=
6161
6262
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

scripts/vagrant-linux-priv-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
function install_go() {
4-
local go_version=1.12.13
4+
local go_version="1.12.16"
55
local download=
66

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

0 commit comments

Comments
 (0)