From a79b65e975a9769f41f7e237bbe29de83798d76f Mon Sep 17 00:00:00 2001 From: Misha Kaletsky <15040698+mmkal@users.noreply.github.com> Date: Thu, 25 Jan 2024 17:32:50 -0500 Subject: [PATCH] Update action runtime to node20 (#1071) Co-authored-by: Tonye Jack --- .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 f14ecb94f..106c0af5c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,11 +22,11 @@ jobs: persist-credentials: false fetch-depth: 0 - - name: Use Node.js 16.x + - name: Use Node.js 20.x uses: actions/setup-node@v4.0.1 with: cache: 'yarn' - node-version: '16.x' + node-version: '20.x' - name: Create coverage directory and clover.xml run: | diff --git a/action.yml b/action.yml index dccabac6d..7d92e4c83 100644 --- a/action.yml +++ b/action.yml @@ -93,7 +93,7 @@ outputs: description: "Indicates whether at least one pattern was provided" runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' post: 'dist/cleanup/index.js'