From ca0c0e356934d21d0eb8cef88d16b5c6c9665f38 Mon Sep 17 00:00:00 2001 From: leovct Date: Fri, 22 Nov 2024 10:33:45 +0100 Subject: [PATCH 1/2] ci: pin ethereum version --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 264652332..3f947906b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ concurrency: env: GO_VERSION: "1.22" # https://go.dev/dl/ STRINGER_VERSION: "0.26.0" # https://pkg.go.dev/golang.org/x/tools/cmd/stringer?tab=versions + # Go bindings. + GO_ETHEREUM_VERSION: "1.14.11" # https://github.com/ethereum/go-ethereum/releases # Protoc dependencies. PROTOC_VERSION: "28.2" # https://github.com/protocolbuffers/protobuf/releases PROTOC_GEN_GO_VERSION: "1.35.1" # https://pkg.go.dev/google.golang.org/protobuf/cmd/protoc-gen-go?tab=versions @@ -66,7 +68,7 @@ jobs: run: | sudo add-apt-repository ppa:ethereum/ethereum sudo apt-get update - sudo apt-get install ethereum + sudo apt-get install ethereum=${{ env.GO_ETHEREUM_VERSION }} abigen --version - name: Install foundry uses: foundry-rs/foundry-toolchain@v1 From 13f1fa97f60ad009a85de08c30bd145103de9dfe Mon Sep 17 00:00:00 2001 From: leovct Date: Fri, 22 Nov 2024 10:43:11 +0100 Subject: [PATCH 2/2] fix: geth version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f947906b..3f1f2f667 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ env: GO_VERSION: "1.22" # https://go.dev/dl/ STRINGER_VERSION: "0.26.0" # https://pkg.go.dev/golang.org/x/tools/cmd/stringer?tab=versions # Go bindings. - GO_ETHEREUM_VERSION: "1.14.11" # https://github.com/ethereum/go-ethereum/releases + GO_ETHEREUM_VERSION: "1.14.11+build30352+jammy" # https://github.com/ethereum/go-ethereum/releases and https://launchpad.net/~ethereum/+archive/ubuntu/ethereum # Protoc dependencies. PROTOC_VERSION: "28.2" # https://github.com/protocolbuffers/protobuf/releases PROTOC_GEN_GO_VERSION: "1.35.1" # https://pkg.go.dev/google.golang.org/protobuf/cmd/protoc-gen-go?tab=versions