Skip to content

Commit 942fedf

Browse files
committed
Docker: Upgrade Go from v1.18.2 to v1.18.3
1 parent 046acbd commit 942fedf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/dist/install-go.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts"
44

5-
GOLANG_VERSION=1.18.2
5+
GOLANG_VERSION=1.18.3
66
DESTDIR=$(realpath "${1:-/usr/local}")
77

88
# abort if not executed as root
@@ -24,13 +24,13 @@ set -eux;
2424

2525
if [[ $DESTARCH == "amd64" ]]; then
2626
URL="https://go.dev/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz"
27-
CHECKSUM="e54bec97a1a5d230fc2f9ad0880fcbabb5888f30ed9666eca4a91c5a32e86cbc *go.tgz"
27+
CHECKSUM="956f8507b302ab0bb747613695cdae10af99bbd39a90cae522b7c0302cc27245 *go.tgz"
2828
elif [[ $DESTARCH == "arm64" ]]; then
2929
URL="https://go.dev/dl/go${GOLANG_VERSION}.linux-arm64.tar.gz"
30-
CHECKSUM="fc4ad28d0501eaa9c9d6190de3888c9d44d8b5fb02183ce4ae93713f67b8a35b *go.tgz"
30+
CHECKSUM="beacbe1441bee4d7978b900136d1d6a71d150f0a9bb77e9d50c822065623a35a *go.tgz"
3131
elif [[ $DESTARCH == "arm" ]]; then
3232
URL="https://go.dev/dl/go${GOLANG_VERSION}.linux-armv6l.tar.gz"
33-
CHECKSUM="570dc8df875b274981eaeabe228d0774985de42e533ffc8c7ff0c9a55174f697 *go.tgz"
33+
CHECKSUM="b8f0b5db24114388d5dcba7ca0698510ea05228b0402fcbeb0881f74ae9cb83b *go.tgz"
3434
else
3535
echo "Unsupported Machine Architecture: $DESTARCH" 1>&2
3636
exit 1

0 commit comments

Comments
 (0)