From bf47ec1968be75878c4e0fbb3412f718e37d0dee Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Tue, 3 Dec 2024 11:41:02 -0700 Subject: [PATCH] Remove toolchain directive from go.mod This directive specified a newer version of the go toolchain from the go runtime used, and newer than our minimum supported. - Fixes #1571 Signed-off-by: Jonathon Anderson --- .github/workflows/check.yml | 2 +- go.mod | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 63c42ecf..2fa3d868 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -62,7 +62,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: ['1.23'] # ['1.21', '1.22', '1.23'] # https://github.com/warewulf/warewulf/issues/1571 + go-version: ['1.21', '1.22', '1.23'] steps: - name: Checkout Warewulf uses: actions/checkout@v4 diff --git a/go.mod b/go.mod index ddb315ef..a46b96db 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/warewulf/warewulf go 1.21.0 -toolchain go1.23.3 - require ( dario.cat/mergo v1.0.0 github.com/Masterminds/sprig/v3 v3.2.3