From 7607335b26311b4a3f64fe72f6108e10a48c36ee Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Mon, 9 Oct 2023 12:28:50 +0200 Subject: [PATCH] feat: update action runtime to node 20 (#2340) * feat: update action runtime to node 20 * ci: run with node v20, matching action manifest --- .github/workflows/ci.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 330ce671e6..4d4b95fc03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x cache: npm - run: npm ci - run: npm run build diff --git a/action.yml b/action.yml index 745fbc08a3..1a4caed361 100644 --- a/action.yml +++ b/action.yml @@ -85,7 +85,7 @@ outputs: pull-request-head-sha: description: 'The commit SHA of the pull request branch.' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' branding: icon: 'git-pull-request'