Update Go to v1.16.6 (#9542)

This commit is contained in:
Sebastian Spaink 2021-07-26 20:39:23 -05:00 committed by GitHub
parent 754b7ff4c1
commit a1dae0d2c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -13,7 +13,7 @@ executors:
go-1_16:
working_directory: '/go/src/github.com/influxdata/telegraf'
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.16.5'
- image: 'quay.io/influxdb/telegraf-ci:1.16.6'
environment:
GOFLAGS: -p=8
mac:
@ -150,7 +150,7 @@ jobs:
steps:
- checkout
- check-changed-files-or-halt-windows
- run: choco upgrade golang --version=1.16.5
- run: choco upgrade golang --version=1.16.6
- run: choco install make
- run: git config --system core.longpaths true
- run: make test-windows
@ -448,4 +448,4 @@ workflows:
filters:
branches:
only:
- master
- master

View File

@ -201,8 +201,8 @@ ci-1.15:
.PHONY: ci-1.16
ci-1.16:
docker build -t quay.io/influxdb/telegraf-ci:1.16.5 - < scripts/ci-1.16.docker
docker push quay.io/influxdb/telegraf-ci:1.16.5
docker build -t quay.io/influxdb/telegraf-ci:1.16.6 - < scripts/ci-1.16.docker
docker push quay.io/influxdb/telegraf-ci:1.16.6
.PHONY: install
install: $(buildbin)

View File

@ -1,4 +1,4 @@
FROM golang:1.16.5 as builder
FROM golang:1.16.6 as builder
WORKDIR /go/src/github.com/influxdata/telegraf
COPY . /go/src/github.com/influxdata/telegraf

View File

@ -1,4 +1,4 @@
FROM golang:1.16.5-buster as builder
FROM golang:1.16.6-buster as builder
WORKDIR /go/src/github.com/influxdata/telegraf
COPY . /go/src/github.com/influxdata/telegraf

View File

@ -1,4 +1,4 @@
FROM golang:1.16.5
FROM golang:1.16.6
RUN chmod -R 755 "$GOPATH"

View File

@ -3,8 +3,8 @@
set -eux
GO_ARCH="darwin-amd64"
GO_VERSION="1.16.5"
GO_VERSION_SHA="be761716d5bfc958a5367440f68ba6563509da2f539ad1e1864bd42fe553f277" # from https://golang.org/dl
GO_VERSION="1.16.6"
GO_VERSION_SHA="e4e83e7c6891baa00062ed37273ce95835f0be77ad8203a29ec56dbf3d87508a" # from https://golang.org/dl
# This path is cachable. (Saving in /usr/local/ would cause issues restoring the cache.)
path="/usr/local/Cellar"