From 6d71b99755ae3386db58158d5c8a4b26c7691400 Mon Sep 17 00:00:00 2001 From: apmmachine <58790750+apmmachine@users.noreply.github.com> Date: Wed, 12 Jul 2023 05:46:51 -0400 Subject: [PATCH] [Automation] Bump Golang version to 1.19.11 (#307) Co-authored-by: apmmachine --- Jenkinsfile | 2 +- go/Makefile.common | 2 +- go/base-arm/Dockerfile.tmpl | 4 ++-- go/base/install-go.sh | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ef926943..881ab41f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { DOCKER_REGISTRY_SECRET = 'secret/observability-team/ci/docker-registry/prod' DOCKER_REGISTRY = 'docker.elastic.co' STAGING_IMAGE = "${env.DOCKER_REGISTRY}/observability-ci" - GO_VERSION = '1.19.10' + GO_VERSION = '1.19.11' BUILDX = "1" } options { diff --git a/go/Makefile.common b/go/Makefile.common index 19896f93..9fe76ba8 100644 --- a/go/Makefile.common +++ b/go/Makefile.common @@ -2,7 +2,7 @@ SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST))) include $(SELF_DIR)/../Makefile.common NAME := golang-crossbuild -VERSION := 1.19.10 +VERSION := 1.19.11 DEBIAN_VERSION ?= 9 SUFFIX := -$(shell basename $(CURDIR)) TAG_EXTENSION ?= diff --git a/go/base-arm/Dockerfile.tmpl b/go/base-arm/Dockerfile.tmpl index 5f8ae949..deb63943 100644 --- a/go/base-arm/Dockerfile.tmpl +++ b/go/base-arm/Dockerfile.tmpl @@ -37,9 +37,9 @@ RUN \ libsqlite3-0 \ && rm -rf /var/lib/apt/lists/* -ARG GOLANG_VERSION=1.19.10 +ARG GOLANG_VERSION=1.19.11 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256=df98698821211c819e8b2420c77a0f802d989e377718578a31b1f91f6be2c5b4 +ARG GOLANG_DOWNLOAD_SHA256=ae22c047e0e63d2d28205b529baaf9d9ca0c93e890c309af62cd116b9efebcbd RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \ && echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \ diff --git a/go/base/install-go.sh b/go/base/install-go.sh index 541c15c0..6c2b3221 100644 --- a/go/base/install-go.sh +++ b/go/base/install-go.sh @@ -4,10 +4,10 @@ set -e ## These variables are automatically bumped. ## If you change their name please change .ci/bump-go-release-version.sh -GOLANG_VERSION=1.19.10 +GOLANG_VERSION=1.19.11 GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz -GOLANG_DOWNLOAD_SHA256_AMD=8b045a483d3895c6edba2e90a9189262876190dbbd21756870cdd63821810677 -GOLANG_DOWNLOAD_SHA256_ARM=df98698821211c819e8b2420c77a0f802d989e377718578a31b1f91f6be2c5b4 +GOLANG_DOWNLOAD_SHA256_AMD=ee18f98a03386e2bf48ff75737ea17c953b1572f9b1114352f104ac5eef04bb4 +GOLANG_DOWNLOAD_SHA256_ARM=ae22c047e0e63d2d28205b529baaf9d9ca0c93e890c309af62cd116b9efebcbd GO_TAR_FILE=/tmp/golang.tar.gz