From cea3892af13019da87b4c492b684e6817a344b71 Mon Sep 17 00:00:00 2001 From: Mathieu Hofman Date: Thu, 30 Jan 2025 20:59:49 +0000 Subject: [PATCH] ci: use node 18.18 --- .github/workflows/integration.yml | 2 +- .github/workflows/lint-test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 09d97c5..74f4c70 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -56,7 +56,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 18.18 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 3eface5..08657fe 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -9,11 +9,11 @@ on: pull_request: jobs: - build: + dapp: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] + node-version: [18.18] steps: - name: Checkout dapp uses: actions/checkout@v2