diff --git a/.circleci/config.yml b/.circleci/config.yml index 07f510a29..c06e538d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ executors: working_directory: '/go/src/github.com/influxdata/telegraf' resource_class: large docker: - - image: 'quay.io/influxdb/telegraf-ci:1.17.6' + - image: 'quay.io/influxdb/telegraf-ci:1.17.7' environment: GOFLAGS: -p=4 mac: diff --git a/Makefile b/Makefile index 4dfcd566f..f6d44222f 100644 --- a/Makefile +++ b/Makefile @@ -221,8 +221,8 @@ plugin-%: .PHONY: ci-1.17 ci-1.17: - docker build -t quay.io/influxdb/telegraf-ci:1.17.6 - < scripts/ci-1.17.docker - docker push quay.io/influxdb/telegraf-ci:1.17.6 + docker build -t quay.io/influxdb/telegraf-ci:1.17.7 - < scripts/ci-1.17.docker + docker push quay.io/influxdb/telegraf-ci:1.17.7 .PHONY: install install: $(buildbin) diff --git a/scripts/ci-1.17.docker b/scripts/ci-1.17.docker index b75bc6271..14f36871e 100644 --- a/scripts/ci-1.17.docker +++ b/scripts/ci-1.17.docker @@ -1,4 +1,4 @@ -FROM golang:1.17.6 +FROM golang:1.17.7 RUN chmod -R 755 "$GOPATH" diff --git a/scripts/installgo_mac.sh b/scripts/installgo_mac.sh index 0a53030be..9c6c0d6e7 100644 --- a/scripts/installgo_mac.sh +++ b/scripts/installgo_mac.sh @@ -3,13 +3,13 @@ set -eux ARCH=$(uname -m) -GO_VERSION="1.17.6" +GO_VERSION="1.17.7" if [ "$ARCH" = 'arm64' ]; then GO_ARCH="darwin-arm64" - GO_VERSION_SHA="dc54f3f4099e2be9e9c33bf926a7dc3ad64f34717142f7abcaff9ae44bc03d0c" # from https://golang.org/dl + GO_VERSION_SHA="e141bd85577b875cc771cfcc18604989c861e93bbef377ba6c80d29e18f9a338" # from https://golang.org/dl elif [ "$ARCH" = 'x86_64' ]; then GO_ARCH="darwin-amd64" - GO_VERSION_SHA="874bc6f95e07697380069a394a21e05576a18d60f4ba178646e1ebed8f8b1f89" # from https://golang.org/dl + GO_VERSION_SHA="7c3d9cc70ee592515d92a44385c0cba5503fd0a9950f78d76a4587916c67a84d" # from https://golang.org/dl fi # This path is cachable. (Saving in /usr/local/ would cause issues restoring the cache.) diff --git a/scripts/installgo_windows.sh b/scripts/installgo_windows.sh index bdf7a81f2..8923e7e54 100644 --- a/scripts/installgo_windows.sh +++ b/scripts/installgo_windows.sh @@ -2,7 +2,7 @@ set -eux -GO_VERSION="1.17.6" +GO_VERSION="1.17.7" setup_go () { choco upgrade golang --allow-downgrade --version=${GO_VERSION}