summaryrefslogtreecommitdiff
path: root/ci/docker/gotest.docker
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-08-16 13:23:15 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commitb0e1fdb2ee09e10c2f2f8a78e14d39282595fab5 (patch)
treead77e8347dc9f98dd628133ffe9cf637bab22be9 /ci/docker/gotest.docker
parentcf55912fccfdac4320af26f18be889fbe47f5a68 (diff)
CI Docker: Update go to latest version
Diffstat (limited to 'ci/docker/gotest.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