Deps: bump Go to 1.21.3 (#2450)

* build: override go version to 1.21.3

* build: re-enable cachix

* ci: set $USER if not set
This commit is contained in:
3u13r 2023-10-12 16:11:02 +02:00 committed by GitHub
parent e80e6076b4
commit 9e1a0c06bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 44 additions and 13 deletions

View file

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