Skip to content

Commit d9b3498

Browse files
authored
[Automation] Bump Golang version to 1.20.5 (#296)
Co-authored-by: apmmachine <apmmachine@users.noreply.github.com>
1 parent 30b8ae9 commit d9b3498

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pipeline {
2929
DOCKER_REGISTRY_SECRET = 'secret/observability-team/ci/docker-registry/prod'
3030
DOCKER_REGISTRY = 'docker.elastic.co'
3131
STAGING_IMAGE = "${env.DOCKER_REGISTRY}/observability-ci"
32-
GO_VERSION = '1.20.4'
32+
GO_VERSION = '1.20.5'
3333
BUILDX = "1"
3434
}
3535
options {

go/Makefile.common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
22
include $(SELF_DIR)/../Makefile.common
33

44
NAME := golang-crossbuild
5-
VERSION := 1.20.4
5+
VERSION := 1.20.5
66
DEBIAN_VERSION ?= 9
77
SUFFIX := -$(shell basename $(CURDIR))
88
TAG_EXTENSION ?=

go/base-arm/Dockerfile.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ RUN \
3737
libsqlite3-0 \
3838
&& rm -rf /var/lib/apt/lists/*
3939

40-
ARG GOLANG_VERSION=1.20.4
40+
ARG GOLANG_VERSION=1.20.5
4141
ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz
42-
ARG GOLANG_DOWNLOAD_SHA256=105889992ee4b1d40c7c108555222ca70ae43fccb42e20fbf1eebb822f5e72c6
42+
ARG GOLANG_DOWNLOAD_SHA256=aa2fab0a7da20213ff975fa7876a66d47b48351558d98851b87d1cfef4360d09
4343

4444
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
4545
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \

go/base/install-go.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This script install the Go version correct for each architecture.
33
set -e
44

5-
GOLANG_VERSION=1.20.4
5+
GOLANG_VERSION=1.20.5
66
GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
7-
GOLANG_DOWNLOAD_SHA256_AMD=698ef3243972a51ddb4028e4a1ac63dc6d60821bf18e59a807e051fee0a385bd
8-
GOLANG_DOWNLOAD_SHA256_ARM=105889992ee4b1d40c7c108555222ca70ae43fccb42e20fbf1eebb822f5e72c6
7+
GOLANG_DOWNLOAD_SHA256_AMD=d7ec48cde0d3d2be2c69203bc3e0a44de8660b9c09a6e85c4732a3f7dc442612
8+
GOLANG_DOWNLOAD_SHA256_ARM=aa2fab0a7da20213ff975fa7876a66d47b48351558d98851b87d1cfef4360d09
99

1010
GO_TAR_FILE=/tmp/golang.tar.gz
1111

0 commit comments

Comments
 (0)