From 09b10c7cb6de62b1aec03098a35beff6b5081fe9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:34:34 -0400 Subject: [PATCH] [Automation] Bump Golang version to 1.22.8 (#462) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Geoff Rowland <70981735+rowlandgeoff@users.noreply.github.com> --- .go-version | 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/.go-version b/.go-version index 5d287e49..0793194f 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.22.7 \ No newline at end of file +1.22.8 \ No newline at end of file diff --git a/go/Makefile.common b/go/Makefile.common index dd76ad93..7eda75ef 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.22.7 +VERSION := 1.22.8 DEBIAN_VERSION ?= 9 SUFFIX := -$(shell basename $(CURDIR)) TAG_EXTENSION ?= diff --git a/go/base-arm/Dockerfile.tmpl b/go/base-arm/Dockerfile.tmpl index a621f51f..53e3c8fd 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.22.7 +ARG GOLANG_VERSION=1.22.8 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256=ed695684438facbd7e0f286c30b7bc2411cfc605516d8127dc25c62fe5b03885 +ARG GOLANG_DOWNLOAD_SHA256=5c616b32dab04bb8c4c8700478381daea0174dc70083e4026321163879278a4a 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 76e46f55..96783ca9 100644 --- a/go/base/install-go.sh +++ b/go/base/install-go.sh @@ -2,10 +2,10 @@ # This script install the Go version correct for each architecture. set -e -GOLANG_VERSION=1.22.7 +GOLANG_VERSION=1.22.8 GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz -GOLANG_DOWNLOAD_SHA256_AMD=fc5d49b7a5035f1f1b265c17aa86e9819e6dc9af8260ad61430ee7fbe27881bb -GOLANG_DOWNLOAD_SHA256_ARM=ed695684438facbd7e0f286c30b7bc2411cfc605516d8127dc25c62fe5b03885 +GOLANG_DOWNLOAD_SHA256_AMD=5f467d29fc67c7ae6468cb6ad5b047a274bae8180cac5e0b7ddbfeba3e47e18f +GOLANG_DOWNLOAD_SHA256_ARM=5c616b32dab04bb8c4c8700478381daea0174dc70083e4026321163879278a4a GO_TAR_FILE=/tmp/golang.tar.gz