chore: update to go1.19.5 (#12498)

This commit is contained in:
Joshua Powers 2023-01-12 06:25:15 -07:00 committed by GitHub
parent a3e4a14233
commit 9dfe03a81a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -8,7 +8,7 @@ executors:
working_directory: '/go/src/github.com/influxdata/telegraf'
resource_class: large
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.19.4'
- image: 'quay.io/influxdb/telegraf-ci:1.19.5'
environment:
GOFLAGS: -p=4
mac:

View File

@ -238,8 +238,8 @@ plugins/parsers/influx/machine.go: plugins/parsers/influx/machine.go.rl
.PHONY: ci
ci:
docker build -t quay.io/influxdb/telegraf-ci:1.19.4 - < scripts/ci.docker
docker push quay.io/influxdb/telegraf-ci:1.19.4
docker build -t quay.io/influxdb/telegraf-ci:1.19.5 - < scripts/ci.docker
docker push quay.io/influxdb/telegraf-ci:1.19.5
.PHONY: install
install: $(buildbin)

View File

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

View File

@ -2,10 +2,10 @@
set -eux
GO_VERSION="1.19.4"
GO_VERSION="1.19.5"
GO_ARCH="linux-amd64"
# from https://golang.org/dl
GO_VERSION_SHA="c9c08f783325c4cf840a94333159cc937f05f75d36a8b307951d5bd959cf2ab8"
GO_VERSION_SHA="36519702ae2fd573c9869461990ae550c8c0d955cd28d2827a6b159fda81ff95"
# Download Go and verify Go tarball
setup_go () {

View File

@ -3,9 +3,9 @@
set -eux
ARCH=$(uname -m)
GO_VERSION="1.19.4"
GO_VERSION_SHA_arm64="bb3bc5d7655b9637cfe2b5e90055dee93b0ead50e2ffd091df320d1af1ca853f" # from https://golang.org/dl
GO_VERSION_SHA_amd64="44894862d996eec96ef2a39878e4e1fce4d05423fc18bdc1cbba745ebfa41253" # from https://golang.org/dl
GO_VERSION="1.19.5"
GO_VERSION_SHA_arm64="4a67f2bf0601afe2177eb58f825adf83509511d77ab79174db0712dc9efa16c8" # from https://golang.org/dl
GO_VERSION_SHA_amd64="23d22bb6571bbd60197bee8aaa10e702f9802786c2e2ddce5c84527e86b66aa0" # from https://golang.org/dl
if [ "$ARCH" = 'arm64' ]; then
GO_ARCH="darwin-arm64"

View File

@ -2,7 +2,7 @@
set -eux
GO_VERSION="1.19.4"
GO_VERSION="1.19.5"
setup_go () {
choco upgrade golang --allow-downgrade --version=${GO_VERSION}