Skip to content

Commit c597c7c

Browse files
committed
update go to 1.25.8
1 parent d2eb3f2 commit c597c7c

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
runs-on: windows-latest
2121
steps:
2222
- uses: actions/checkout@v4
23+
- name: Setup env
24+
run: |
25+
go env -w GOTOOLCHAIN=go1.25.8+auto
2326
- name: Test
2427
run: .\build.bat test
2528

@@ -28,6 +31,9 @@ jobs:
2831
runs-on: ubuntu-latest
2932
steps:
3033
- uses: actions/checkout@v4
34+
- name: Setup env
35+
run: |
36+
go env -w GOTOOLCHAIN=go1.25.8+auto
3137
- name: Test (go test)
3238
run: |
3339
cd src

build.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ if not defined GOPRG (
1414
set GOPRG=go
1515
)
1616

17+
if not defined GOTOOLCHAIN (
18+
set GOTOOLCHAIN=go1.25.8+auto
19+
)
20+
1721
if not defined GOARCH (
1822
echo GOARCH is not defined, detecting cpu architecture...
1923
if "%PROCESSOR_ARCHITECTURE%"=="x86" (

src/go.mod

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

3-
go 1.26
3+
go 1.25
44

55
require (
66
github.com/fatih/color v1.18.0

0 commit comments

Comments
 (0)