From d006926a272c49919b798c85ed5e6be9b0f331d5 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Thu, 31 Oct 2024 12:52:49 +0530 Subject: [PATCH] Use Node v20 via `actions/setup-node@v4` --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a641d512..d4756bce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,12 +38,12 @@ jobs: strategy: fail-fast: false matrix: - node_version: ["12"] + node_version: ["20"] steps: - name: Checkout Repository uses: actions/checkout@v4 - name: "Set up Node ${{ matrix.node_version }}" - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node_version }} cache: "yarn"