From fa60189c8708ec3200a1ae89afcc9c14dca774e3 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Tue, 14 Feb 2023 04:50:03 +0100 Subject: [PATCH] Update actions/checkout + actions/setup-node in CI to v3 (#1402) --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 9015e6d7c..c62e8953a 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -21,9 +21,9 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm'