From 7756293fd8e15f5e4e36ccab0710b5e1bedf3e30 Mon Sep 17 00:00:00 2001 From: Simon Baynes Date: Fri, 5 Apr 2024 17:36:34 +0100 Subject: [PATCH] Update the action to use Node20 Closes #52 --- .github/workflows/test.yml | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2843c37..5b4e001 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Get the sources uses: actions/checkout@v1 - - name: Install Node 16 + - name: Install Node 20 uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' - name: Install the .NET 6 SDK uses: actions/setup-dotnet@v2 with: diff --git a/action.yml b/action.yml index 748a347..ff9a130 100644 --- a/action.yml +++ b/action.yml @@ -32,5 +32,5 @@ inputs: required: false default: 'false' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'