summaryrefslogtreecommitdiff
path: root/ci/docker
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-08-16 13:23:15 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2023-10-23 08:32:38 +0200
commit59b39b998415434668cb248da0fb8b7acc61e312 (patch)
tree31a6fda69a7e7e8aaea2524c5e6724e0d6e327ca /ci/docker
parent46f311458ef25158ad33d898b5468ee593e8cfb2 (diff)
CI Docker: Update go to latest version
Diffstat (limited to 'ci/docker')
-rw-r--r--ci/docker/gotest.docker4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/docker/gotest.docker b/ci/docker/gotest.docker
index ec98d0c..b2e0113 100644
--- a/ci/docker/gotest.docker
+++ b/ci/docker/gotest.docker
@@ -10,10 +10,10 @@ RUN apt-get -y install openjdk-11-jre xvfb python3-selenium firefox-esr python3-
# Install go from go.dev
# Get
-RUN wget https://go.dev/dl/go1.19.4.linux-amd64.tar.gz -O go.tar.gz
+RUN wget https://go.dev/dl/go1.21.0.linux-amd64.tar.gz -O go.tar.gz
# Verify hash
-RUN echo "c9c08f783325c4cf840a94333159cc937f05f75d36a8b307951d5bd959cf2ab8 go.tar.gz" | sha256sum --check
+RUN echo "d0398903a16ba2232b389fb31032ddf57cac34efda306a0eebac34f0965a0742 go.tar.gz" | sha256sum --check
# Untar
RUN tar -C /usr/local -xzf go.tar.gz