From 957d384bcb7c9dde63409477e202e614323ecbf3 Mon Sep 17 00:00:00 2001 From: alespour <42931850+alespour@users.noreply.github.com> Date: Thu, 12 Oct 2023 18:50:40 +0200 Subject: [PATCH] chore(build): upgrade Go to 1.20.10 (#2783) --- .circleci/config.yml | 2 +- Dockerfile_build_ubuntu64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c0cb78c84..25cbb526a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ executors: # NOTE: To upgrade the Go version, first push the upgrade to the cross-builder Dockerfile in the edge repo, # then update the version here to match. Until we finish the migration to using the cross-builder image, # you'll also need to update references to `cimg/go` and `GO_VERSION` in this file. - - image: quay.io/influxdb/cross-builder:go1.20.4-147b512cba0dbd7ea86df9d4e3c288e36c11e05a + - image: quay.io/influxdb/cross-builder:go1.20.10-latest resource_class: large linux-amd64: machine: diff --git a/Dockerfile_build_ubuntu64 b/Dockerfile_build_ubuntu64 index 38eb11ba0..be1c64795 100644 --- a/Dockerfile_build_ubuntu64 +++ b/Dockerfile_build_ubuntu64 @@ -1,4 +1,4 @@ -FROM quay.io/influxdb/cross-builder:go1.20.4-147b512cba0dbd7ea86df9d4e3c288e36c11e05a +FROM quay.io/influxdb/cross-builder:go1.20.10-latest # This dockerfile is capabable of performing all # build/test/package/deploy actions needed for Kapacitor.