From a71fde62a508966e26a169c85f7ded3612580b3c Mon Sep 17 00:00:00 2001 From: Simon Baynes <baynezy@gmail.com> Date: Fri, 12 Apr 2024 10:35:11 +0100 Subject: [PATCH] Update build workflow to use node20 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f51303..b180f53 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,10 +10,10 @@ jobs: steps: - name: Get the sources uses: actions/checkout@v1 - - name: Install Node 16 + - name: Install Node 20 uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' - name: Restore the dependencies run: npm install - name: Build