From b8bd44b62a1e16fb718711d5cfdf68704e8a28d4 Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Mon, 16 Sep 2024 13:17:30 +0200 Subject: [PATCH] install solc 0.8.27 on CI (#47) Signed-off-by: xermicus --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 64241eb..8397de3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,7 +19,7 @@ jobs: - name: Install solc run: | mkdir -p solc - curl -sSL --output solc/solc https://github.com/ethereum/solidity/releases/download/v0.8.26/solc-static-linux + curl -sSL --output solc/solc https://github.com/ethereum/solidity/releases/download/v0.8.27/solc-static-linux chmod +x solc/solc echo "$(pwd)/solc/" >> $GITHUB_PATH