From f810c6221314eefdad85a90762098b9ca1b18359 Mon Sep 17 00:00:00 2001 From: Quentin Delettre Date: Tue, 28 Feb 2023 11:44:01 +0100 Subject: [PATCH] chore: upgrade github actions to v3 & node to 16.x --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 802aae3..4677c23 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -4,10 +4,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '16.x' - run: npm install - run: npm test