Skip to content

Commit ad97770

Browse files
update to Go 1.25, drop Go 1.23 (#50)
1 parent 23eb188 commit ad97770

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ "ubuntu" ]
9-
go: [ "1.23.x", "1.24.x" ]
9+
go: [ "1.24.x", "1.25.x" ]
1010
runs-on: ${{ fromJSON(vars[format('INTEGRATION_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
1111
name: Integration tests (${{ matrix.os}}, Go ${{ matrix.go }})
1212
steps:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: "1.24.x"
15+
go-version: "1.25.x"
1616
- name: Check for //go:build ignore in .go files
1717
working-directory: ${{ matrix.module }}
1818
run: |

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ "ubuntu", "windows", "macos" ]
9-
go: [ "1.23.x", "1.24.x" ]
9+
go: [ "1.24.x", "1.25.x" ]
1010
runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
1111
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
1212
steps:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/quic-go/connect-ip-go
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/dunglas/httpsfv v1.0.2

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.23.0
1+
go 1.24.0
22

33
use (
44
.

0 commit comments

Comments
 (0)