diff --git a/.github/workflows/govuln.yml b/.github/workflows/govuln.yml index ef2990a..e0047fa 100644 --- a/.github/workflows/govuln.yml +++ b/.github/workflows/govuln.yml @@ -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 ./... diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f8b9180..1e69405 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: | diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 3ad6174..1e18455 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 58d9684..2dff4ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/Makefile b/Makefile index 7299df0..96a9943 100644 --- a/Makefile +++ b/Makefile @@ -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"