deps: Go 1.21.6

This commit is contained in:
Malte Poll 2024-01-15 15:45:07 +01:00
parent f465356ace
commit 66faa5493f
9 changed files with 10 additions and 10 deletions

View file

@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \
git
# Install Go
ARG GO_VER=1.21.5
ARG GO_VER=1.21.6
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
rm go${GO_VER}.linux-amd64.tar.gz