Skip to content

Commit 4b35f0f

Browse files
committed
chore: update golang to 1.21.6
1 parent d06e44f commit 4b35f0f

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

build/deploy/amazon-1/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ LABEL org.opencontainers.image.vendor="M0Rf30"
66
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77
RUN \
88
yum -y install curl tar; \
9-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
10-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
9+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
10+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1111
tar -C /usr/lib -xf go.tar.gz; \
1212
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1313
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/amazon-2/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ LABEL org.opencontainers.image.vendor="M0Rf30"
66
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77
RUN \
88
yum -y install curl tar; \
9-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
10-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
9+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
10+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1111
tar -C /usr/lib -xf go.tar.gz; \
1212
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1313
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/debian-buster/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ RUN \
99
apt-get update; \
1010
apt-get upgrade; \
1111
apt-get install -y --no-install-recommends ca-certificates curl tar; \
12-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
13-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
12+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
13+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1414
tar -C /usr/lib -xf go.tar.gz; \
1515
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1616
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/debian-jessie/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ RUN \
99
apt-get update; \
1010
apt-get upgrade; \
1111
apt-get install -y --no-install-recommends ca-certificates curl tar; \
12-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
13-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
12+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
13+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1414
tar -C /usr/lib -xf go.tar.gz; \
1515
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1616
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/debian-stretch/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ RUN \
99
apt-get update; \
1010
apt-get upgrade; \
1111
apt-get install -y --no-install-recommends ca-certificates curl tar; \
12-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
13-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
12+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
13+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1414
tar -C /usr/lib -xf go.tar.gz; \
1515
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1616
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/fedora-38/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ LABEL org.opencontainers.image.vendor="M0Rf30"
66
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77
RUN \
88
dnf -y install curl tar; \
9-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
10-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
9+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
10+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1111
tar -C /usr/lib -xf go.tar.gz; \
1212
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1313
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/rocky-8/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ LABEL org.opencontainers.image.vendor="M0Rf30"
66
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77
RUN \
88
dnf -y install curl tar; \
9-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
10-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
9+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
10+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1111
tar -C /usr/lib -xf go.tar.gz; \
1212
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1313
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/rocky-9/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ LABEL org.opencontainers.image.vendor="M0Rf30"
66
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77
RUN \
88
dnf -y install curl-minimal tar; \
9-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
10-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
9+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
10+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1111
tar -C /usr/lib -xf go.tar.gz; \
1212
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1313
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/ubuntu-bionic/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ RUN \
99
apt-get update; \
1010
apt-get upgrade; \
1111
apt-get install -y --no-install-recommends ca-certificates curl tar; \
12-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
13-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
12+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
13+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1414
tar -C /usr/lib -xf go.tar.gz; \
1515
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1616
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/ubuntu-focal/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ RUN \
99
apt-get update; \
1010
apt-get upgrade; \
1111
apt-get install -y --no-install-recommends ca-certificates curl tar; \
12-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
13-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
12+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
13+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1414
tar -C /usr/lib -xf go.tar.gz; \
1515
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1616
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

build/deploy/ubuntu-jammy/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ RUN \
99
apt-get update; \
1010
apt-get upgrade; \
1111
apt-get install -y --no-install-recommends ca-certificates curl tar; \
12-
curl -sL https://go.dev/dl/go1.21.3.linux-amd64.tar.gz --output go.tar.gz; \
13-
echo "1241381b2843fae5a9707eec1f8fb2ef94d827990582c7c7c32f5bdfbfd420c8 go.tar.gz" | sha256sum -c - ; \
12+
curl -sL https://go.dev/dl/go1.21.6.linux-amd64.tar.gz --output go.tar.gz; \
13+
echo "3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4 go.tar.gz" | sha256sum -c - ; \
1414
tar -C /usr/lib -xf go.tar.gz; \
1515
ln -sf /usr/lib/go/bin/go /usr/bin/go; \
1616
ln -sf /usr/lib/go/bin/gofmt /usr/bin/gofmt; \

pkg/constants/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const (
1313
ColorWhite = "\033[37m"
1414
DockerOrg = "m0rf30/yap-"
1515
Git = "git"
16-
GoArchiveURL = "https://go.dev/dl/go1.21.3.linux-amd64.tar.gz"
16+
GoArchiveURL = "https://go.dev/dl/go1.21.6.linux-amd64.tar.gz"
1717
)
1818

1919
var (

0 commit comments

Comments
 (0)