From 4b1c1d9253d4b04c78cefba5be855a5481c4c4b2 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Thu, 14 Dec 2023 23:38:01 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20Revert=20stupid=20chang?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- .github/workflows/test-createx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-createx.yml b/.github/workflows/test-createx.yml index cdae7974..5976deb4 100644 --- a/.github/workflows/test-createx.yml +++ b/.github/workflows/test-createx.yml @@ -67,13 +67,13 @@ jobs: - name: Ensure Solidity version consistency run: | version_foundry=$(forge config --json | jq -r ".solc") - version_hh=$(pnpm solc) + version_hh=$(npx hardhat solc) if [[ $version_foundry != "0.8.23" ]] || [[ $version_foundry != $version_hh ]]; then exit 1; fi - name: Ensure `paris` as EVM version run: | version_foundry=$(forge config --json | jq -r ".evm_version") - version_hh=$(pnpm evm) + version_hh=$(npx hardhat evm) if [[ $version_foundry != "paris" ]] || [[ $version_foundry != $version_hh ]]; then exit 1; fi - name: Set up Go