From ece4a5a9405975712dd2df2ee2e18e11c6c728f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 08:22:08 +0200 Subject: [PATCH] [Automation] Bump Golang version to 1.23.1 (#459) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Victor Martinez --- .go-version | 2 +- go/Makefile.common | 2 +- go/base-arm/Dockerfile.tmpl | 4 ++-- go/base/Dockerfile.tmpl | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.go-version b/.go-version index bfbadb3a..1b50fc31 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.23.0 \ No newline at end of file +1.23.1 \ No newline at end of file diff --git a/go/Makefile.common b/go/Makefile.common index 07a59c8f..97086237 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.23.0 +VERSION := 1.23.1 DEBIAN_VERSION ?= 9 SUFFIX := -$(shell basename $(CURDIR)) TAG_EXTENSION ?= diff --git a/go/base-arm/Dockerfile.tmpl b/go/base-arm/Dockerfile.tmpl index 6d1ea1b8..5466863d 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.23.0 +ARG GOLANG_VERSION=1.23.1 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256=62788056693009bcf7020eedc778cdd1781941c6145eab7688bd087bce0f8659 +ARG GOLANG_DOWNLOAD_SHA256=faec7f7f8ae53fda0f3d408f52182d942cc89ef5b7d3d9f23ff117437d4b2d2f RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \ && echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \ diff --git a/go/base/Dockerfile.tmpl b/go/base/Dockerfile.tmpl index c552e9bb..eb75a866 100644 --- a/go/base/Dockerfile.tmpl +++ b/go/base/Dockerfile.tmpl @@ -31,9 +31,9 @@ RUN apt-get -o Acquire::Check-Valid-Until=false update -y --no-install-recommend RUN ln -s /usr/bin/pip3 /usr/bin/pip {{- end }} -ARG GOLANG_VERSION=1.23.0 +ARG GOLANG_VERSION=1.23.1 ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz -ARG GOLANG_DOWNLOAD_SHA256=905a297f19ead44780548933e0ff1a1b86e8327bb459e92f9c0012569f76f5e3 +ARG GOLANG_DOWNLOAD_SHA256=49bbb517cfa9eee677e1e7897f7cf9cfdbcf49e05f61984a2789136de359f9bd RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \ && echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \