Skip to content

Commit 00274c8

Browse files
authored
bump geth version v0.6.7+cdk.1 (#162)
* wip * wip * remove debug tests * update mocks * wip * wip * cr fix
1 parent add99c0 commit 00274c8

File tree

79 files changed

+430
-2273
lines changed

Some content is hidden

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

79 files changed

+430
-2273
lines changed

.github/workflows/jsonschema.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
json-schema:
1515
strategy:
1616
matrix:
17-
go-version: [ 1.21.x ]
17+
go-version: [ 1.23.x ]
1818
goarch: [ "amd64" ]
1919
runs-on: ubuntu-latest
2020
steps:
@@ -26,7 +26,7 @@ jobs:
2626
ref: ${{ github.event.pull_request.head.sha }}
2727

2828
- name: Install Go
29-
uses: actions/setup-go@v3
29+
uses: actions/setup-go@v5
3030
with:
3131
go-version: ${{ matrix.go-version }}
3232
env:

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Install Go
16-
uses: actions/setup-go@v3
16+
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.21.x
18+
go-version: 1.23.x
1919
- name: Checkout code
2020
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
2121
- name: Lint

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.21
25+
go-version: 1.23.7
2626

2727
- name: Set up QEMU
2828
uses: docker/setup-qemu-action@v3

.github/workflows/security-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
DEBUG: "true"
1717
with:
18-
go-version: 1.21.x
18+
go-version: 1.23.x
1919
vulncheck-version: latest
2020
package: ./...
2121
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-e2e.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
go-version: [ 1.21.x ]
18+
go-version: [ 1.23.x ]
1919
goarch: [ "amd64" ]
2020
e2e-group: [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, cdk-validium-1 ]
2121
runs-on: ubuntu-latest
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
2525

2626
- name: Install Go
27-
uses: actions/setup-go@v3
27+
uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ matrix.go-version }}
3030
env:

.github/workflows/test-full-non-e2e.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
test-full-non-e2e:
1515
strategy:
1616
matrix:
17-
go-version: [ 1.21.x ]
17+
go-version: [ 1.23.x ]
1818
goarch: [ "amd64" ]
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout code
2222
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
2323

2424
- name: Install Go
25-
uses: actions/setup-go@v3
25+
uses: actions/setup-go@v5
2626
with:
2727
go-version: ${{ matrix.go-version }}
2828
env:

.github/workflows/updatedeps.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
1313

1414
- name: Install Go
15-
uses: actions/setup-go@v3
15+
uses: actions/setup-go@v5
1616
with:
17-
go-version: "1.21.x"
17+
go-version: "1.23.x"
1818
env:
1919
GOARCH: "amd64"
2020

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CONTAINER FOR BUILDING BINARY
2-
FROM golang:1.21 AS build
2+
FROM golang:1.23.7 AS build
33

44
# INSTALL DEPENDENCIES
55
RUN go install github.com/gobuffalo/packr/v2/[email protected]

aggregator/mocks/mock_dbtx.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregator/mocks/mock_etherman.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregator/mocks/mock_ethtxmanager.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregator/mocks/mock_profitabilitychecker.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregator/mocks/mock_prover.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregator/mocks/mock_state.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ci/e2e-group5/debug_test.go

-1
This file was deleted.

ci/e2e-group8/debug_calltracer_test.go

-1
This file was deleted.

docs/ci/groups.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ for each of the jobs looks like this:
3737
```
3838
strategy:
3939
matrix:
40-
go-version: [ 1.21.x ]
40+
go-version: [ 1.23.x ]
4141
goarch: [ "amd64" ]
4242
e2e-group: [ 1, 2, 3 ]
4343
```
@@ -54,15 +54,15 @@ groups 1 and 3, the matrix strategy config should look like:
5454
```
5555
strategy:
5656
matrix:
57-
go-version: [ 1.21.x ]
57+
go-version: [ 1.23.x ]
5858
goarch: [ "amd64" ]
5959
e2e-group: [ 2 ]
6060
```
6161
If we want to re-add group 1:
6262
```
6363
strategy:
6464
matrix:
65-
go-version: [ 1.21.x ]
65+
go-version: [ 1.23.x ]
6666
goarch: [ "amd64" ]
6767
e2e-group: [ 1, 2 ]
6868
```

etherman/etherman_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ func TestErrorEthGasStationPrice(t *testing.T) {
378378

379379
ethGasStationM.On("SuggestGasPrice", ctx).Return(big.NewInt(0), fmt.Errorf("error getting gasPrice from ethGasStation"))
380380
gp := etherman.GetL1GasPrice(ctx)
381-
assert.Equal(t, big.NewInt(1263075579), gp)
381+
assert.Equal(t, big.NewInt(264075579), gp)
382382

383383
etherscanM := new(etherscanMock)
384384
etherman.GasProviders.Providers = []ethereum.GasPricer{etherman.EthClient, etherscanM, ethGasStationM}

etherman/mock_da.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etherman/mock_etherscan.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etherman/mock_ethgasstation.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etherman/mock_state.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ethtxmanager/mock_etherman_test.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ethtxmanager/mock_state_test.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gasprice/mock_etherman.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gasprice/mock_pool.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)