Skip to content

Commit 8ff9318

Browse files
committed
Merge pull request #95 from ethereum-optimism/sc/upgrade-solc
upgrade solc to 0.8.25
2 parents 8c1db38 + 76a3359 commit 8ff9318

File tree

10 files changed

+91
-81
lines changed

10 files changed

+91
-81
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install Golang
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: '1.22.x'
16+
go-version: '1.22.7'
1717
- name: Build rvsol
1818
run: forge build
1919
working-directory: rvsol
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Golang
4141
uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.22.x'
43+
go-version: '1.22.7'
4444
- name: Build FFI
4545
run: go build
4646
working-directory: rvgo/scripts/go-ffi
@@ -68,7 +68,7 @@ jobs:
6868
- uses: actions/checkout@v4
6969
- uses: actions/setup-go@v5
7070
with:
71-
go-version: '1.22.x'
71+
go-version: '1.22.7'
7272
cache: false
7373
- name: golangci-lint
7474
uses: golangci/golangci-lint-action@v4
@@ -85,7 +85,7 @@ jobs:
8585
- name: Install Golang
8686
uses: actions/setup-go@v5
8787
with:
88-
go-version: '1.22.x'
88+
go-version: '1.22.7'
8989
- name: Check if optimism submodule version matches go.mod version
9090
run: ./.github/scripts/check_versions.sh
9191

@@ -98,7 +98,7 @@ jobs:
9898
run: git submodule update --init
9999
- uses: actions/setup-go@v5
100100
with:
101-
go-version: '1.22.x'
101+
go-version: '1.22.7'
102102
- name: Build asterisc
103103
run: make build-rvgo && cp rvgo/bin/asterisc tests/op-program-test/
104104
- name: Build op-program

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
module github.com/ethereum-optimism/asterisc
22

3-
go 1.22
3+
go 1.22.0
44

55
toolchain go1.22.7
66

77
replace github.com/ethereum/go-ethereum v1.14.11 => github.com/ethereum-optimism/op-geth v1.101408.1-0.20241002211323-d5a96613c22b
88

99
require (
10-
github.com/ethereum-optimism/optimism v1.9.2-0.20241008153126-117c9a427168
10+
github.com/ethereum-optimism/optimism v1.9.5-0.20241008153126-117c9a427168
1111
github.com/ethereum/go-ethereum v1.14.11
1212
github.com/holiman/uint256 v1.3.1
1313
github.com/pkg/errors v0.9.1
1414
github.com/pkg/profile v1.7.0
15-
github.com/stretchr/testify v1.9.0
16-
github.com/urfave/cli/v2 v2.27.4
15+
github.com/stretchr/testify v1.10.0
16+
github.com/urfave/cli/v2 v2.27.5
1717
)
1818

1919
require (
@@ -43,7 +43,7 @@ require (
4343
github.com/consensys/gnark-crypto v0.12.1 // indirect
4444
github.com/containerd/cgroups v1.1.0 // indirect
4545
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
46-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
46+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
4747
github.com/crate-crypto/go-ipa v0.0.0-20240223125850-b1e8a79f509c // indirect
4848
github.com/crate-crypto/go-kzg-4844 v1.0.0 // indirect
4949
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -57,15 +57,15 @@ require (
5757
github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127 // indirect
5858
github.com/elastic/gosigar v0.14.3 // indirect
5959
github.com/ethereum-optimism/go-ethereum-hdwallet v0.1.3 // indirect
60-
github.com/ethereum-optimism/superchain-registry/superchain v0.0.0-20240910145426-b3905c89e8ac // indirect
60+
github.com/ethereum-optimism/superchain-registry/superchain v0.0.0-20241126105717-d31591e83048 // indirect
6161
github.com/ethereum/c-kzg-4844 v1.0.0 // indirect
6262
github.com/ethereum/go-verkle v0.1.1-0.20240829091221-dffa7562dbe9 // indirect
6363
github.com/fatih/color v1.16.0 // indirect
64-
github.com/felixge/fgprof v0.9.3 // indirect
64+
github.com/felixge/fgprof v0.9.5 // indirect
6565
github.com/ferranbt/fastssz v0.1.2 // indirect
6666
github.com/flynn/noise v1.1.0 // indirect
6767
github.com/francoispqt/gojay v1.2.13 // indirect
68-
github.com/fsnotify/fsnotify v1.7.0 // indirect
68+
github.com/fsnotify/fsnotify v1.8.0 // indirect
6969
github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08 // indirect
7070
github.com/getsentry/sentry-go v0.27.0 // indirect
7171
github.com/go-ole/go-ole v1.3.0 // indirect
@@ -74,10 +74,10 @@ require (
7474
github.com/godbus/dbus/v5 v5.1.0 // indirect
7575
github.com/gofrs/flock v0.8.1 // indirect
7676
github.com/gogo/protobuf v1.3.2 // indirect
77-
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
77+
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
7878
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
7979
github.com/google/gopacket v1.1.19 // indirect
80-
github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
80+
github.com/google/pprof v0.0.0-20241009165004-a3522334989c // indirect
8181
github.com/google/uuid v1.6.0 // indirect
8282
github.com/gorilla/websocket v1.5.3 // indirect
8383
github.com/graph-gophers/graphql-go v1.3.0 // indirect
@@ -105,7 +105,7 @@ require (
105105
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
106106
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
107107
github.com/jbenet/goprocess v0.1.4 // indirect
108-
github.com/klauspost/compress v1.17.9 // indirect
108+
github.com/klauspost/compress v1.17.11 // indirect
109109
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
110110
github.com/koron/go-ssdp v0.0.4 // indirect
111111
github.com/kr/pretty v0.3.1 // indirect
@@ -137,8 +137,8 @@ require (
137137
github.com/mr-tron/base58 v1.2.0 // indirect
138138
github.com/multiformats/go-base32 v0.1.0 // indirect
139139
github.com/multiformats/go-base36 v0.2.0 // indirect
140-
github.com/multiformats/go-multiaddr v0.13.0 // indirect
141-
github.com/multiformats/go-multiaddr-dns v0.4.0 // indirect
140+
github.com/multiformats/go-multiaddr v0.14.0 // indirect
141+
github.com/multiformats/go-multiaddr-dns v0.4.1 // indirect
142142
github.com/multiformats/go-multiaddr-fmt v0.1.0 // indirect
143143
github.com/multiformats/go-multibase v0.2.0 // indirect
144144
github.com/multiformats/go-multicodec v0.9.0 // indirect
@@ -169,7 +169,7 @@ require (
169169
github.com/pion/turn/v2 v2.1.6 // indirect
170170
github.com/pion/webrtc/v3 v3.3.0 // indirect
171171
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
172-
github.com/prometheus/client_golang v1.20.4 // indirect
172+
github.com/prometheus/client_golang v1.20.5 // indirect
173173
github.com/prometheus/client_model v0.6.1 // indirect
174174
github.com/prometheus/common v0.55.0 // indirect
175175
github.com/prometheus/procfs v0.15.1 // indirect
@@ -201,15 +201,15 @@ require (
201201
go.uber.org/multierr v1.11.0 // indirect
202202
go.uber.org/zap v1.27.0 // indirect
203203
golang.org/x/crypto v0.28.0 // indirect
204-
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
205-
golang.org/x/mod v0.20.0 // indirect
206-
golang.org/x/net v0.28.0 // indirect
207-
golang.org/x/sync v0.8.0 // indirect
204+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
205+
golang.org/x/mod v0.21.0 // indirect
206+
golang.org/x/net v0.30.0 // indirect
207+
golang.org/x/sync v0.9.0 // indirect
208208
golang.org/x/sys v0.26.0 // indirect
209209
golang.org/x/term v0.25.0 // indirect
210210
golang.org/x/text v0.19.0 // indirect
211211
golang.org/x/time v0.7.0 // indirect
212-
golang.org/x/tools v0.24.0 // indirect
212+
golang.org/x/tools v0.26.0 // indirect
213213
google.golang.org/protobuf v1.34.2 // indirect
214214
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
215215
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)