Skip to content

Commit

Permalink
[Automation] Bump Golang version to 1.22.12 (#501)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Victor Martinez <[email protected]>
  • Loading branch information
github-actions[bot] and v1v authored Feb 11, 2025
1 parent ead712f commit fde9a99
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22.11
1.22.12
2 changes: 1 addition & 1 deletion go/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
include $(SELF_DIR)/../Makefile.common

NAME := golang-crossbuild
VERSION := 1.22.11
VERSION := 1.22.12
DEBIAN_VERSION ?= 9
SUFFIX := -$(shell basename $(CURDIR))
TAG_EXTENSION ?=
Expand Down
4 changes: 2 additions & 2 deletions go/base-arm/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ RUN \
libsqlite3-0 \
&& rm -rf /var/lib/apt/lists/*

ARG GOLANG_VERSION=1.22.11
ARG GOLANG_VERSION=1.22.12
ARG GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-arm64.tar.gz
ARG GOLANG_DOWNLOAD_SHA256=9ebfcab26801fa4cf0627c6439db7a4da4d3c6766142a3dd83508240e4f21031
ARG GOLANG_DOWNLOAD_SHA256=fd017e647ec28525e86ae8203236e0653242722a7436929b1f775744e26278e7

RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \
Expand Down
6 changes: 3 additions & 3 deletions go/base/install-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This script install the Go version correct for each architecture.
set -e

GOLANG_VERSION=1.22.11
GOLANG_VERSION=1.22.12
GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
GOLANG_DOWNLOAD_SHA256_AMD=0fc88d966d33896384fbde56e9a8d80a305dc17a9f48f1832e061724b1719991
GOLANG_DOWNLOAD_SHA256_ARM=9ebfcab26801fa4cf0627c6439db7a4da4d3c6766142a3dd83508240e4f21031
GOLANG_DOWNLOAD_SHA256_AMD=4fa4f869b0f7fc6bb1eb2660e74657fbf04cdd290b5aef905585c86051b34d43
GOLANG_DOWNLOAD_SHA256_ARM=fd017e647ec28525e86ae8203236e0653242722a7436929b1f775744e26278e7

GO_TAR_FILE=/tmp/golang.tar.gz

Expand Down

0 comments on commit fde9a99

Please sign in to comment.