From 6fca288c0afc4773d504c06260198b920de0bcaf Mon Sep 17 00:00:00 2001 From: Iddan Aaronsohn Date: Mon, 30 Dec 2024 00:39:06 +0100 Subject: [PATCH] Update node version in ci --- .github/workflows/ci.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a29e7c24..e64757eb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,11 +14,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 3 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3.8.1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 18 - cache: yarn + node-version: 20 - run: yarn --frozen-lockfile - run: yarn ci - run: yarn build