From 6086483630e2db854bc55bc011e54e4ae4cd63f2 Mon Sep 17 00:00:00 2001 From: Manuel <5877862+manuelsc@users.noreply.github.com> Date: Tue, 9 Jul 2024 14:32:36 +0200 Subject: [PATCH] (NOBIDS) update workflows to go 1.21 --- .github/workflows/build.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 36eb91f84d..e1203c2f3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v3 - - name: Set up Go 1.20 + - name: Set up Go 1.21 uses: actions/setup-go@v4 with: go-version-file: './go.mod' diff --git a/Dockerfile b/Dockerfile index e61cb8ea5e..4cf1a6b039 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # The dockerfile is currently still WIP and might be broken -FROM golang:1.20.8 AS build-env +FROM golang:1.21.12 AS build-env COPY go.mod go.sum /src/ WORKDIR /src RUN go mod download