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 <janderson@ciq.com>
This commit is contained in:
Jonathon Anderson
2024-12-03 11:41:02 -07:00
parent a58943feb1
commit bf47ec1968
2 changed files with 1 additions and 3 deletions

View File

@@ -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

2
go.mod
View File

@@ -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