From 02bce5243a72a65f10de6c3318a3132fb6c5e7da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Buchwald?= Date: Wed, 7 Feb 2024 14:41:09 +0100 Subject: [PATCH] Update go 1.22 (#76) --- Dockerfile | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d0acf8..118dd8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ RUN apt-get update && grep '^[^ #]' /tmp/packages.txt | \ xargs apt-get install --yes --no-install-recommends && \ rm -rf /var/lib/apt/lists/* /tmp/packages.txt -RUN wget https://go.dev/dl/go1.20.13.linux-amd64.tar.gz -RUN tar -xvf go1.20.13.linux-amd64.tar.gz +RUN wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz +RUN tar -xvf go1.22.0.linux-amd64.tar.gz RUN mv go /usr/lib ENV GOROOT /usr/lib/go ENV GOPATH /go diff --git a/go.mod b/go.mod index b8278b1..a12ccba 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module install -go 1.20 +go 1.22 require github.com/stretchr/testify v1.8.4