From f59bbf9f3828865c14b06a3e5cc3ae284a0db78d Mon Sep 17 00:00:00 2001 From: Clement Yan Date: Fri, 25 Oct 2024 14:49:04 +0800 Subject: [PATCH] Use Node 22 for GitHub actions for now (#6575) ## What's the problem this PR addresses? There are a number of issues affecting Node 23, causing our E2E suite and performance benchmarks to fail since its release: https://github.com/nodejs/node/pull/54224#issuecomment-2361850159 evanw/esbuild#3951 ## How did you fix it? Drop down to Node 22 for those actions until the issues are cleared ## Checklist - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed. --- .github/actions/prepare/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 56b8faf66053..cfad1a9c88ed 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -6,7 +6,7 @@ inputs: node-version: description: 'The version of Node.js to use' required: false - default: 'current' + default: '22' runs: using: composite