From ffdb24573dff0728342e21c44013fa78882352d9 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Wed, 29 Sep 2021 09:50:07 +0530 Subject: [PATCH] Chore: use `actions/setup-node@v2` in CI (#192) --- .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 f23e890..d4ad541 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Install Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 - name: Install Packages run: npm install env: @@ -38,7 +38,7 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Install Packages