diff --git a/Jenkinsfile b/Jenkinsfile index 7bd4a97a..10512df1 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.8' + GO_VERSION = '1.19.9' BUILDX = "1" } options { diff --git a/go/Makefile.common b/go/Makefile.common index ba82ac69..9f12a744 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.8 +VERSION := 1.19.9 DEBIAN_VERSION ?= 9 SUFFIX := -$(shell basename $(CURDIR)) TAG_EXTENSION ?= diff --git a/go/base-arm/Dockerfile.tmpl b/go/base-arm/Dockerfile.tmpl index 6aef3f2c..8d44c772 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.8 +ARG GOLANG_VERSION=1.19.9 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256=f89e7c0ba63782143bd1f896e4b96ea09e4baf39e8bc2f2ddf27339f9e433dd3 +ARG GOLANG_DOWNLOAD_SHA256=b947e457be9d7b52a082c68e42b6939f9cc151f1ad5b3d8fd646ca3352f6f2f1 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 a32df0e8..ace70e96 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.8 +GOLANG_VERSION=1.19.9 GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz -GOLANG_DOWNLOAD_SHA256_AMD=e1a0bf0ab18c8218805a1003fd702a41e2e807710b770e787e5979d1cf947aba -GOLANG_DOWNLOAD_SHA256_ARM=f89e7c0ba63782143bd1f896e4b96ea09e4baf39e8bc2f2ddf27339f9e433dd3 +GOLANG_DOWNLOAD_SHA256_AMD=e858173b489ec1ddbe2374894f52f53e748feed09dde61be5b4b4ba2d73ef34b +GOLANG_DOWNLOAD_SHA256_ARM=b947e457be9d7b52a082c68e42b6939f9cc151f1ad5b3d8fd646ca3352f6f2f1 GO_TAR_FILE=/tmp/golang.tar.gz