From c7020ad06de55d5a26a9b0e66bb1adcb5e8360c9 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 12 Oct 2025 00:56:00 +0800 Subject: [PATCH] update to Go 1.25, drop Go 1.23 --- .github/workflows/integration.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/unit.yml | 2 +- go.mod | 2 +- go.work | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index cfa62b9..aa4af2f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -6,7 +6,7 @@ jobs: fail-fast: false matrix: os: [ "ubuntu" ] - go: [ "1.23.x", "1.24.x" ] + go: [ "1.24.x", "1.25.x" ] runs-on: ${{ fromJSON(vars[format('INTEGRATION_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }} name: Integration tests (${{ matrix.os}}, Go ${{ matrix.go }}) steps: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 11c845f..e216bd5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.24.x" + go-version: "1.25.x" - name: Check for //go:build ignore in .go files working-directory: ${{ matrix.module }} run: | diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 5a10a27..f6bfe79 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -6,7 +6,7 @@ jobs: fail-fast: false matrix: os: [ "ubuntu", "windows", "macos" ] - go: [ "1.23.x", "1.24.x" ] + go: [ "1.24.x", "1.25.x" ] runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }} name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }}) steps: diff --git a/go.mod b/go.mod index 11edbd5..af127c8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/quic-go/connect-ip-go -go 1.23 +go 1.24 require ( github.com/dunglas/httpsfv v1.0.2 diff --git a/go.work b/go.work index de80e34..dc5a4d4 100644 --- a/go.work +++ b/go.work @@ -1,4 +1,4 @@ -go 1.23.0 +go 1.24.0 use ( .