From e62a98228cf62f4642877f319a224aa18f432651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Tue, 15 Mar 2022 15:32:14 -0300 Subject: [PATCH] Update documentation for v2 This makes the examples refer to the newest action version, which supports Echidna 2.0 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f840ca6..607acdc 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ pages](https://github.com/crytic/echidna/wiki). ### Basic usage ```yaml -uses: crytic/echidna-action@v1 +uses: crytic/echidna-action@v2 with: files: contracts/ contract: Marketplace @@ -81,7 +81,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js 16 uses: actions/setup-node@v2 with: @@ -92,7 +92,7 @@ jobs: - name: Compile contracts run: npx hardhat compile - name: Run Echidna - uses: crytic/echidna-action@v1 + uses: crytic/echidna-action@v2 with: solc-version: 0.7.6 files: .