From 21d5d5a08bedfd60a9d830fe77069e866ec68042 Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Sat, 16 Jan 2021 13:19:39 +0900 Subject: [PATCH] ci: update actions/setup-node to v2 Signed-off-by: Sora Morimoto --- .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 }}