Skip to content

Commit f8a2c7e

Browse files
backport of commit 527f2a9 (#13964)
This pull request was automerged via backport-assistant
1 parent 7993ecd commit f8a2c7e

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ executors:
457457
go:
458458
working_directory: /go/src/github.com/hashicorp/nomad
459459
docker:
460-
- image: docker.mirror.hashicorp.services/golang:1.18.3
460+
- image: docker.mirror.hashicorp.services/golang:1.18.5
461461
resource_class: medium
462462
environment:
463463
<<: *common_envs
@@ -470,7 +470,7 @@ executors:
470470
resource_class: large
471471
environment: &machine_env
472472
<<: *common_envs
473-
GOLANG_VERSION: 1.18.3
473+
GOLANG_VERSION: 1.18.5
474474

475475
go-macos:
476476
working_directory: ~/go/src/github.com/hashicorp/nomad
@@ -479,7 +479,7 @@ executors:
479479
environment:
480480
<<: *common_envs
481481
GOPATH: /Users/distiller/go
482-
GOLANG_VERSION: 1.18.3
482+
GOLANG_VERSION: 1.18.5
483483

484484
go-windows:
485485
machine:
@@ -491,7 +491,7 @@ executors:
491491
GOPATH: c:\gopath
492492
GOBIN: c:\gopath\bin
493493
GOTESTSUM_PATH: c:\tmp\test-reports
494-
GOLANG_VERSION: 1.18.3
494+
GOLANG_VERSION: 1.18.5
495495
GOTESTSUM_VERSION: 1.7.0
496496
VAULT_VERSION: 1.4.1
497497

.github/workflows/test-core.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- 'website/**'
2222
env:
2323
VERBOSE: 1
24-
GO_VERSION: 1.18.3
24+
GO_VERSION: 1.18.5
2525
GOBIN: /usr/local/bin
2626
GOTESTARCH: amd64
2727
CONSUL_VERSION: 1.11.3

.go-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.3
1+
1.18.5

contributing/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ A development environment is supplied via Vagrant to make getting started easier
3030

3131
Developing without Vagrant
3232
---
33-
1. Install [Go 1.18.3+](https://golang.org/) *(Note: `gcc-go` is not supported)*
33+
1. Install [Go 1.18.5+](https://golang.org/) *(Note: `gcc-go` is not supported)*
3434
1. Clone this repo
3535
```sh
3636
$ git clone https://github.com/hashicorp/nomad.git

scripts/release/mac-remote-build

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

scripts/vagrant-linux-priv-go.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -o errexit
44

55
function install_go() {
6-
local go_version="1.18.3"
6+
local go_version="1.18.5"
77
local download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
88

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

0 commit comments

Comments
 (0)