CI: No longer test with Golang 1.24

This commit is contained in:
Joachim Bauch 2026-02-12 09:02:24 +01:00
commit 15d6e516bd
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02
5 changed files with 4 additions and 17 deletions

View file

@ -24,8 +24,8 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
@ -39,4 +39,4 @@ jobs:
run: |
set -euo pipefail
go install golang.org/x/vuln/cmd/govulncheck@latest
GOEXPERIMENT=synctest govulncheck ./...
govulncheck ./...

View file

@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.24"
go-version: "1.25"
- name: lint
uses: golangci/golangci-lint-action@v9.2.0
@ -38,8 +38,6 @@ jobs:
version: latest
args: --timeout=2m0s
skip-cache: true
env:
GOEXPERIMENT: synctest
modernize:
name: modernize
@ -82,7 +80,7 @@ jobs:
- name: Check minimum supported version of Go
run: |
go mod tidy -go=1.24.0 -compat=1.24.0
go mod tidy -go=1.25.0 -compat=1.25.0
- name: Check go.mod / go.sum
run: |

View file

@ -24,7 +24,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest
@ -49,7 +48,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest
@ -95,7 +93,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest

View file

@ -26,7 +26,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest
@ -50,7 +49,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest
@ -71,7 +69,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest
@ -92,7 +89,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
- "1.26"
runs-on: ubuntu-latest

View file

@ -77,11 +77,7 @@ else
GOPATHBIN := $(GOPATH)/bin/$(GOOS)_$(GOARCH)
endif
ifeq ($(GOVERSION), 1.24)
GOEXPERIMENT := synctest
else
GOEXPERIMENT :=
endif
hook:
[ ! -d "$(CURDIR)/.git/hooks" ] || ln -sf "$(CURDIR)/scripts/pre-commit.hook" "$(CURDIR)/.git/hooks/pre-commit"