deps: update go to 1.20.3 (#1622)

This commit is contained in:
Malte Poll 2023-04-06 16:36:07 +02:00 committed by GitHub
parent aa3b49aced
commit 2b962598bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 34 additions and 34 deletions

View file

@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \
git
# Install Go
ARG GO_VER=1.20.2
ARG GO_VER=1.20.3
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