Skip to content

Commit 5aca7cc

Browse files
committed
Update minimum Go version to 1.24
Update Go version requirements from 1.23 to 1.24 minimum. This change updates go.mod, golangci-lint configuration, and GitHub Actions matrix to test against Go 1.24 and 1.25 instead of 1.23 and 1.24.
1 parent 268fea2 commit 5aca7cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Build
99
strategy:
1010
matrix:
11-
go-version: [1.23, 1.24]
11+
go-version: [1.24, 1.25]
1212
platform: [ubuntu-latest, macos-latest, windows-latest]
1313
runs-on: ${{ matrix.platform }}
1414
steps:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "2"
22
run:
3-
go: "1.23"
3+
go: "1.24"
44
tests: true
55
allow-parallel-runners: true
66
linters:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/oschwald/maxminddb-golang/v2
22

3-
go 1.23.0
3+
go 1.24
44

55
require (
66
github.com/stretchr/testify v1.10.0

0 commit comments

Comments
 (0)