From d0af04f97a2381630ea5e8da5a99f50cf27856a0 Mon Sep 17 00:00:00 2001 From: apmmachine Date: Wed, 7 Feb 2024 04:05:11 +0000 Subject: [PATCH 1/4] chore: Update go version 1.20.14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- go/base-arm/Dockerfile.tmpl | 4 ++-- go/base/install-go.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go/base-arm/Dockerfile.tmpl b/go/base-arm/Dockerfile.tmpl index 46dcbb6f..2fdf8911 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.20.13 +ARG GOLANG_VERSION=1.20.14 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256=a2d811cef3c4fc77c01195622e637af0c2cf8b3814a95a0920cf2f83b6061d38 +ARG GOLANG_DOWNLOAD_SHA256= 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 f37858a6..7404b447 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.20.13 +GOLANG_VERSION=1.20.14 GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz -GOLANG_DOWNLOAD_SHA256_AMD=9a9d3dcae2b6a638b1f2e9bd4db08ffb39c10e55d9696914002742d90f0047b5 -GOLANG_DOWNLOAD_SHA256_ARM=a2d811cef3c4fc77c01195622e637af0c2cf8b3814a95a0920cf2f83b6061d38 +GOLANG_DOWNLOAD_SHA256_AMD= +GOLANG_DOWNLOAD_SHA256_ARM= GO_TAR_FILE=/tmp/golang.tar.gz From 17c0f06226d8db986e2ee8591e9b3d498ce217c6 Mon Sep 17 00:00:00 2001 From: apmmachine Date: Wed, 7 Feb 2024 04:05:12 +0000 Subject: [PATCH 2/4] chore: Update go/Makefile.common MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- go/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/Makefile.common b/go/Makefile.common index f78f7bf1..5f15c1dc 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.20.13 +VERSION := 1.20.14 DEBIAN_VERSION ?= 9 SUFFIX := -$(shell basename $(CURDIR)) TAG_EXTENSION ?= From 2799ce05d5a57f4a59a74adc714e32046ac4e20a Mon Sep 17 00:00:00 2001 From: apmmachine Date: Wed, 7 Feb 2024 04:05:13 +0000 Subject: [PATCH 3/4] chore: Update .go-version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .go-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.go-version b/.go-version index 5009c3e6..0e80c92d 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.20.13 +1.20.14 From 5a45012990516b4b511e2b37fb90515817d2deee Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 7 Feb 2024 09:53:33 +0100 Subject: [PATCH 4/4] Apply suggestions from code review --- go/base-arm/Dockerfile.tmpl | 2 +- go/base/install-go.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go/base-arm/Dockerfile.tmpl b/go/base-arm/Dockerfile.tmpl index 2fdf8911..6a5e3640 100644 --- a/go/base-arm/Dockerfile.tmpl +++ b/go/base-arm/Dockerfile.tmpl @@ -39,7 +39,7 @@ RUN \ ARG GOLANG_VERSION=1.20.14 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256= +ARG GOLANG_DOWNLOAD_SHA256=2096507509a98782850d1f0669786c09727053e9fe3c92b03c0d96f48700282b 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 7404b447..ae450234 100644 --- a/go/base/install-go.sh +++ b/go/base/install-go.sh @@ -4,8 +4,8 @@ set -e GOLANG_VERSION=1.20.14 GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz -GOLANG_DOWNLOAD_SHA256_AMD= -GOLANG_DOWNLOAD_SHA256_ARM= +GOLANG_DOWNLOAD_SHA256_AMD=ff445e48af27f93f66bd949ae060d97991c83e11289009d311f25426258f9c44 +GOLANG_DOWNLOAD_SHA256_ARM=2096507509a98782850d1f0669786c09727053e9fe3c92b03c0d96f48700282b GO_TAR_FILE=/tmp/golang.tar.gz