From 178b7fa387f3d90ea6820063160d415c5850946c Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Wed, 17 May 2023 01:01:54 +0200 Subject: [PATCH] upgrade to go 1.20.4 --- forgejo-test-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forgejo-test-helper.sh b/forgejo-test-helper.sh index 50f8b2a..cc6eddb 100755 --- a/forgejo-test-helper.sh +++ b/forgejo-test-helper.sh @@ -13,8 +13,8 @@ function dependency_go() { if ! which go > /dev/null ; then apt-get update apt-get install -y -qq wget tar - wget https://go.dev/dl/go1.20.3.linux-amd64.tar.gz - tar zxf go1.20.3.linux-amd64.tar.gz + wget --quiet https://go.dev/dl/go1.20.4.linux-amd64.tar.gz + tar zxf go1.20.4.linux-amd64.tar.gz export PATH=$PATH:$(pwd)/go/bin fi }