Skip to content

Commit 08da174

Browse files
committed
Merge branch 'evm-upgrades' into pedro/eip-7883
2 parents 7932760 + 58a52ba commit 08da174

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1096
-126
lines changed

.github/workflows/go-mod-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v5
1616
- uses: actions/setup-go@v5
1717
with:
18-
go-version: '1.25.x'
18+
go-version: '1.26.x'
1919
cache: false
2020

2121
- name: go mod tidy

.github/workflows/gosec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v5
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.25.x'
22+
go-version: '1.26.x'
2323
cache: false
2424
- name: Run Gosec
2525
id: gosec-run

.github/workflows/lint-go.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v5
1616
- uses: actions/setup-go@v5
1717
with:
18-
go-version: '1.25.x'
18+
go-version: '1.26.x'
1919
cache: false
2020

2121
- name: Check `builtins` directory
@@ -31,7 +31,7 @@ jobs:
3131
- name: golangci-lint
3232
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8
3333
with:
34-
version: v2.6.2
34+
version: v2.11.3
3535
# use the default if on main branch, otherwise use the pull request config
3636
args: --timeout=30m --config=.golangci.yml
3737
only-new-issues: false

.github/workflows/permutation-testing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Go
2727
uses: actions/setup-go@v5
2828
with:
29-
go-version: '1.25.x'
29+
go-version: '1.26.x'
3030

3131
- name: Run Permutation Tests
3232
env:

.github/workflows/release-binaries.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- uses: actions/setup-go@v5
5353
with:
54-
go-version: '1.25.x'
54+
go-version: '1.26.x'
5555

5656
- name: Build Binary
5757
shell: bash
@@ -105,7 +105,7 @@ jobs:
105105

106106
- uses: actions/setup-go@v5
107107
with:
108-
go-version: 1.25
108+
go-version: 1.26
109109

110110
- name: Build Binary
111111
shell: pwsh

.github/workflows/test-rosetta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ permissions:
1616

1717
jobs:
1818
run-solo-tests:
19-
name: Run Solo e2e Tests
19+
name: Run Rosetta e2e Tests
2020
runs-on: ubuntu-latest
2121
env:
22-
NETWORK: solo
23-
TEST_NETWORK: solo
22+
NETWORK: custom
23+
TEST_NETWORK: custom
2424
MODE: online
2525
steps:
2626
- name: Set Rosetta repo reference

.github/workflows/test-smoke.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Setup Go
6262
uses: actions/setup-go@v5
6363
with:
64-
go-version: '1.25.x'
64+
go-version: '1.26.x'
6565
- name: Start Thor Node
6666
run: |
6767
docker run -d --name thor-node \

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
unit_tests:
1515
strategy:
1616
matrix:
17-
go-version: [1.25.x]
17+
go-version: [1.26.x]
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919
runs-on: ${{ matrix.os }}
2020
steps:
@@ -42,7 +42,7 @@ jobs:
4242
- name: Install Go
4343
uses: actions/setup-go@v5
4444
with:
45-
go-version: 1.25.x
45+
go-version: 1.26.x
4646

4747
- name: Make all
4848
run: make all
@@ -72,7 +72,7 @@ jobs:
7272
- name: Install Go
7373
uses: actions/setup-go@v5
7474
with:
75-
go-version: 1.25.x
75+
go-version: 1.26.x
7676

7777
- name: Make all
7878
run: make thor

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build thor in a stock Go builder container
2-
FROM golang:1.25.4-alpine3.21 AS builder
2+
FROM golang:1.26.1-alpine AS builder
33

44
RUN apk add --no-cache make gcc musl-dev linux-headers git
55
WORKDIR /go/thor

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ lint-fix: | go_version_check lint_command_check #@ Attempt to fix linting issues
9191
@echo "running golangci-lint..."
9292
@golangci-lint run --config .golangci.yml --fix
9393
@echo "running modernize..."
94-
@go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@v0.20.0 --fix ./...
94+
@go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@v0.21.1 --fix ./...
9595
@echo "running builtin generator..."
9696
@go generate ./builtin/gen
9797
@echo "done."

0 commit comments

Comments
 (0)