From 18047a6fe44807d8c2580cb0fc4cacbc7a6ea52a Mon Sep 17 00:00:00 2001 From: Antonin <9219052+antonincms@users.noreply.github.com> Date: Fri, 1 Sep 2023 18:30:38 +0200 Subject: [PATCH] chore: bump Dockerfile golang version to 1.20 As specified by the golang [release policy](https://go.dev/doc/devel/release#policy), "each major go release is supported until there are two newer major releases", which mean that the oldest supported version is currently go 1.20. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c6990cb5..45d5703b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN python -m venv $VIRTUAL_ENV \ && pip install --upgrade pip yq wheel poetry==$POETRY_VERSION # Install Go (for go-jsonnet) -RUN curl -fsSL -o go.tar.gz https://go.dev/dl/go1.17.3.linux-${TARGETARCH}.tar.gz \ +RUN curl -fsSL -o go.tar.gz https://go.dev/dl/go1.20.8.linux-${TARGETARCH}.tar.gz \ && tar -C /usr/local -xzf go.tar.gz \ && rm go.tar.gz