deps: bump go version (#2318)

This commit is contained in:
3u13r 2023-09-08 10:19:07 +02:00 committed by GitHub
parent 9765003298
commit 6cb506bca7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 11 additions and 11 deletions

View file

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