Skip to content

Update to Go 1.21.7 #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build_dockers.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ do
esac
done

: ${GOLANG_VERSION:=1.21.1}
: ${GOLANG_VERSION:=1.21.7}
case "$GOLANG_ARCH" in
amd64)
: ${GOLANG_SHA256:=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae}
: ${GOLANG_SHA256:=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c}
;;
arm64)
: ${GOLANG_SHA256:=7da1a3936a928fd0b2602ed4f3ef535b8cd1990f1503b8d3e1acc0fa0759c967}
: ${GOLANG_SHA256:=a9bc1ccedbfde059f25b3a2ad81ae4cdf21192ae207dfd3ccbbfe99c3749e233}
;;
esac
export GOLANG_VERSION GOLANG_SHA256 GOLANG_ARCH
Expand Down
4 changes: 2 additions & 2 deletions centos_7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ RUN yum install -y gettext-devel libcurl-devel openssl-devel perl-CPAN perl-deve
make install && \
git --version

ARG GOLANG_VERSION=1.21.1
ARG GOLANG_SHA256=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ARG GOLANG_VERSION=1.21.7
ARG GOLANG_SHA256=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c
ARG GOLANG_ARCH=amd64

ENV GOROOT=/usr/local/go
Expand Down
4 changes: 2 additions & 2 deletions centos_8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ RUN yum -y upgrade
RUN yum install -y rsync ruby ruby-devel rubygems-devel gcc
RUN yum install -y gettext-devel libcurl-devel openssl-devel perl-CPAN perl-devel zlib-devel make wget autoconf git

ARG GOLANG_VERSION=1.21.1
ARG GOLANG_SHA256=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ARG GOLANG_VERSION=1.21.7
ARG GOLANG_SHA256=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c
ARG GOLANG_ARCH=amd64

ENV GOROOT=/usr/local/go
Expand Down
4 changes: 2 additions & 2 deletions debian_10.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ LABEL RUN="docker run -v git-lfs-checkout-dir:/src -v repo_dir:/repo"
RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \
apt-get install -y gettext git dpkg-dev dh-golang asciidoctor curl

ARG GOLANG_VERSION=1.21.1
ARG GOLANG_SHA256=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ARG GOLANG_VERSION=1.21.7
ARG GOLANG_SHA256=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c
ARG GOLANG_ARCH=amd64

ENV GOROOT=/usr/local/go
Expand Down
4 changes: 2 additions & 2 deletions debian_11.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ RUN dpkg --add-architecture i386
RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \
apt-get install -y --no-install-recommends gettext git dpkg-dev dh-golang asciidoctor curl build-essential gcc-i686-linux-gnu libc6-dev:i386

ARG GOLANG_VERSION=1.21.1
ARG GOLANG_SHA256=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ARG GOLANG_VERSION=1.21.7
ARG GOLANG_SHA256=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c
ARG GOLANG_ARCH=amd64

ENV GOROOT=/usr/local/go
Expand Down
4 changes: 2 additions & 2 deletions debian_12.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ RUN dpkg --add-architecture i386
RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \
apt-get install -y --no-install-recommends gettext git dpkg-dev dh-golang asciidoctor curl build-essential gcc-i686-linux-gnu libc6-dev:i386

ARG GOLANG_VERSION=1.21.1
ARG GOLANG_SHA256=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ARG GOLANG_VERSION=1.21.7
ARG GOLANG_SHA256=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c
ARG GOLANG_ARCH=amd64

ENV GOROOT=/usr/local/go
Expand Down
4 changes: 2 additions & 2 deletions rocky_9.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ RUN yum -y upgrade
RUN yum install -y rsync ruby ruby-devel rubygems-devel gcc
RUN yum install -y gettext-devel libcurl-devel openssl-devel perl-CPAN perl-devel zlib-devel make wget autoconf git

ARG GOLANG_VERSION=1.21.1
ARG GOLANG_SHA256=b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ARG GOLANG_VERSION=1.21.7
ARG GOLANG_SHA256=13b76a9b2a26823e53062fa841b07087d48ae2ef2936445dc34c4ae03293702c
ARG GOLANG_ARCH=amd64

ENV GOROOT=/usr/local/go
Expand Down