Skip to content

Commit 64e6a47

Browse files
authored
bump go 1.25 drop go 1.23 (#32)
1 parent 4bec9d0 commit 64e6a47

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
test-go-versions:
1515
description: 'List of golang versions to run tests. Format is json array of string.'
1616
required: false
17-
default: '["1.23", "1.24"]'
17+
default: '["1.24", "1.25"]'
1818
type: string
1919
test-os:
2020
description: 'The OS to run tests. Format is json array of string.'
@@ -25,7 +25,7 @@ on:
2525
test-cover-go-versions:
2626
description: 'List of golang versions to run tests with cover. Format is json array of string.'
2727
required: false
28-
default: '["1.24"]'
28+
default: '["1.25"]'
2929
type: string
3030
test-cover-os:
3131
description: 'The OS to run tests with cover. Format is json array of string.'
@@ -36,7 +36,7 @@ on:
3636
lint-go-versions:
3737
description: 'List of golang versions to run linters. Format is json array of string.'
3838
required: false
39-
default: '["1.23"]'
39+
default: '["1.24"]'
4040
type: string
4141
lint-os:
4242
description: 'The OS to run linters. Format is json array of string.'

.github/workflows/sub_scripts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: '1.24.x'
27+
go-version: '1.25.x'
2828
check-latest: true
2929
cache: false
3030

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
version: "2"
77

88
run:
9-
go: "1.23"
9+
go: "1.24"
1010
modules-download-mode: readonly
1111
issues-exit-code: 1
1212
tests: true

conf/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ifnotnil/x/conf
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/knadh/koanf/parsers/dotenv v1.1.0

http/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ifnotnil/x/http
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/andybalholm/brotli v1.2.0

tst/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ifnotnil/x/tst
22

3-
go 1.23.0
3+
go 1.24.0
44

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

0 commit comments

Comments
 (0)