From 19e754f2b1ee06ee868ef2b745229967e02b3530 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Tue, 12 Sep 2023 17:43:23 +0200 Subject: [PATCH 1/2] feat: update action runtime to node 20 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d264e3845..745ac9405 100644 --- a/action.yml +++ b/action.yml @@ -81,7 +81,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' From a077032ac395e83249a86e780c75d530bc6a5013 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Tue, 12 Sep 2023 17:59:52 +0200 Subject: [PATCH 2/2] ci: run with node v20, matching action manifest --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 747e29d26..46d847982 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 20.x cache: npm - run: npm ci - run: npm run build