fix: correct go.mod to 1.24 (go 1.25 does not exist)
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s
Mirror to GitHub / mirror (push) Failing after 3s
Tests / test (push) Failing after 13s

Also use go-version-file in CI so go.mod and workflow stay in sync.
This commit is contained in:
Franz Kafka 2026-03-22 02:19:12 +00:00
parent 074123e188
commit 0d84bedc7a
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: https://github.com/actions/setup-go@v5
with:
go-version: '1.24'
go-version-file: go.mod
- name: Test
run: go test -race -v ./...

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/metamorphosis-dev/kafka
go 1.25.0
go 1.24
require (
github.com/BurntSushi/toml v1.5.0