deps: bump Go to 1.21.5 (#2689)

This commit is contained in:
Malte Poll 2023-12-08 12:11:31 +01:00 committed by GitHub
parent b92635a0f0
commit 93d505ef7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 12 additions and 12 deletions

View file

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