From 9d44a339bcc5a620eca1ae1e9a22f6779740e254 Mon Sep 17 00:00:00 2001 From: hexshire Date: Wed, 26 Jun 2024 13:25:49 -0300 Subject: [PATCH] chore: update test workflow --- .github/workflows/tests.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 52de2d36..18624462 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: name: Run Unit Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 @@ -23,9 +23,9 @@ jobs: version: nightly - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x cache: 'yarn' - name: Install dependencies @@ -42,7 +42,7 @@ jobs: name: Run Integration Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 @@ -50,9 +50,9 @@ jobs: version: nightly - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x cache: 'yarn' - name: Install dependencies @@ -70,7 +70,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive @@ -80,9 +80,9 @@ jobs: version: nightly - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x cache: 'yarn' - name: Install dependencies @@ -104,7 +104,7 @@ jobs: name: Run symbolic execution tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 @@ -112,9 +112,9 @@ jobs: version: nightly - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x cache: 'yarn' - name: Install dependencies @@ -131,7 +131,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -143,12 +143,12 @@ jobs: version: nightly - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x cache: 'yarn' - name: Install dependencies run: yarn --frozen-lockfile --network-concurrency 1 - - run: yarn lint:check + - run: yarn lint:check \ No newline at end of file