dependencies: bump Go to v1.23.5 (#3599)

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2025-01-20 11:53:55 +01:00 committed by GitHub
parent 40754753a2
commit 53e937522f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 14 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.22.3
ARG GO_VER=1.23.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