From dd8ab273faad04a0cc0e510e23daeaac236c2c1b Mon Sep 17 00:00:00 2001 From: Mitchell Pomery Date: Thu, 13 Jan 2022 03:37:58 +1100 Subject: [PATCH] Update Github Actions to use Node 16 --- .github/workflows/code-review.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-review.yml b/.github/workflows/code-review.yml index 6272ca514f..271a12803e 100644 --- a/.github/workflows/code-review.yml +++ b/.github/workflows/code-review.yml @@ -7,11 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: Use Node.js 10.x - uses: actions/setup-node@v1 + - uses: actions/checkout@v2 + - name: Use Node.js 16.x + uses: actions/setup-node@v2 with: - node-version: 10.x + node-version: 16 - name: npm install, build, and test run: | npm install