Skip to content

Commit 2a9881e

Browse files
committed
ci: update Go version to 1.26.1 across all workflows
go.mod requires >= 1.26.1 but workflows were pinned to 1.25.5, causing all builds to fail with GOTOOLCHAIN=local.
1 parent 27899a9 commit 2a9881e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main, develop, master ]
88

99
env:
10-
GO_VERSION: '1.25.5'
10+
GO_VERSION: '1.26.1'
1111
GOPRIVATE: github.com/luxfi/*
1212
GONOSUMDB: github.com/luxfi/*
1313

.github/workflows/release-binaries.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
shell: bash
4444
- uses: actions/setup-go@v6
4545
with:
46-
go-version: '1.25.5'
46+
go-version: '1.26.1'
4747
- name: Build
4848
run: |
4949
CGO_ENABLED=1 CGO_CFLAGS="-O -D__BLST_PORTABLE__" GOOS=linux GOARCH=amd64 go build -v -ldflags "-X github.com/luxfi/evm/plugin/evm.Version=${{ github.ref_name }}" -o evm ./plugin
@@ -74,7 +74,7 @@ jobs:
7474
shell: bash
7575
- uses: actions/setup-go@v6
7676
with:
77-
go-version: '1.25.5'
77+
go-version: '1.26.1'
7878
- name: Set up arm64 cross compiler
7979
run: |
8080
sudo apt-get -y update
@@ -109,7 +109,7 @@ jobs:
109109
shell: bash
110110
- uses: actions/setup-go@v6
111111
with:
112-
go-version: '1.25.5'
112+
go-version: '1.26.1'
113113
- name: Build
114114
run: |
115115
CGO_ENABLED=1 CGO_CFLAGS="-O -D__BLST_PORTABLE__" GOOS=darwin GOARCH=amd64 go build -v -ldflags "-X github.com/luxfi/evm/plugin/evm.Version=${{ github.ref_name }}" -o evm ./plugin
@@ -140,7 +140,7 @@ jobs:
140140
shell: bash
141141
- uses: actions/setup-go@v6
142142
with:
143-
go-version: '1.25.5'
143+
go-version: '1.26.1'
144144
- name: Build
145145
run: |
146146
CGO_ENABLED=1 CGO_CFLAGS="-O -D__BLST_PORTABLE__" GOOS=darwin GOARCH=arm64 go build -v -ldflags "-X github.com/luxfi/evm/plugin/evm.Version=${{ github.ref_name }}" -o evm ./plugin

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
- uses: actions/setup-go@v6
3737
with:
38-
go-version: "1.25.5"
38+
go-version: "1.26.1"
3939
- name: Run shellcheck
4040
shell: bash
4141
run: scripts/shellcheck.sh
@@ -76,7 +76,7 @@ jobs:
7676
shell: bash
7777
- uses: actions/setup-go@v6
7878
with:
79-
go-version: "1.25.5"
79+
go-version: "1.26.1"
8080
- name: Set timeout on Windows # Windows UT run slower and need a longer timeout
8181
shell: bash
8282
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)