From 0d8a6f1b1940dc0af549c0a3ca44a8059465e446 Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Fri, 26 Mar 2021 20:59:28 +0900 Subject: [PATCH] ci: update actions/setup-node to v2 (#2302) PR-URL: https://github.com/nodejs/node-gyp/pull/2302 Reviewed-By: Christian Clauss Reviewed-By: Richard Lau Reviewed-By: Rod Vagg Reviewed-By: Jiawen Geng --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2fdf4d4c23..e4baee897f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: Tests: strategy: - fail-fast: false + fail-fast: false max-parallel: 15 matrix: node: [10.x, 12.x, 14.x] @@ -16,7 +16,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - name: Use Python ${{ matrix.python }}