Skip to content

Commit a1dae0d

Browse files
authored
Update Go to v1.16.6 (#9542)
1 parent 754b7ff commit a1dae0d

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ executors:
1313
go-1_16:
1414
working_directory: '/go/src/github.com/influxdata/telegraf'
1515
docker:
16-
- image: 'quay.io/influxdb/telegraf-ci:1.16.5'
16+
- image: 'quay.io/influxdb/telegraf-ci:1.16.6'
1717
environment:
1818
GOFLAGS: -p=8
1919
mac:
@@ -150,7 +150,7 @@ jobs:
150150
steps:
151151
- checkout
152152
- check-changed-files-or-halt-windows
153-
- run: choco upgrade golang --version=1.16.5
153+
- run: choco upgrade golang --version=1.16.6
154154
- run: choco install make
155155
- run: git config --system core.longpaths true
156156
- run: make test-windows
@@ -448,4 +448,4 @@ workflows:
448448
filters:
449449
branches:
450450
only:
451-
- master
451+
- master

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ ci-1.15:
201201

202202
.PHONY: ci-1.16
203203
ci-1.16:
204-
docker build -t quay.io/influxdb/telegraf-ci:1.16.5 - < scripts/ci-1.16.docker
205-
docker push quay.io/influxdb/telegraf-ci:1.16.5
204+
docker build -t quay.io/influxdb/telegraf-ci:1.16.6 - < scripts/ci-1.16.docker
205+
docker push quay.io/influxdb/telegraf-ci:1.16.6
206206

207207
.PHONY: install
208208
install: $(buildbin)

scripts/alpine.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16.5 as builder
1+
FROM golang:1.16.6 as builder
22
WORKDIR /go/src/github.com/influxdata/telegraf
33

44
COPY . /go/src/github.com/influxdata/telegraf

scripts/buster.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16.5-buster as builder
1+
FROM golang:1.16.6-buster as builder
22
WORKDIR /go/src/github.com/influxdata/telegraf
33

44
COPY . /go/src/github.com/influxdata/telegraf

scripts/ci-1.16.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16.5
1+
FROM golang:1.16.6
22

33
RUN chmod -R 755 "$GOPATH"
44

scripts/mac_installgo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
set -eux
44

55
GO_ARCH="darwin-amd64"
6-
GO_VERSION="1.16.5"
7-
GO_VERSION_SHA="be761716d5bfc958a5367440f68ba6563509da2f539ad1e1864bd42fe553f277" # from https://golang.org/dl
6+
GO_VERSION="1.16.6"
7+
GO_VERSION_SHA="e4e83e7c6891baa00062ed37273ce95835f0be77ad8203a29ec56dbf3d87508a" # from https://golang.org/dl
88

99
# This path is cachable. (Saving in /usr/local/ would cause issues restoring the cache.)
1010
path="/usr/local/Cellar"

0 commit comments

Comments
 (0)