Skip to content

Commit bb05a83

Browse files
authored
ci: upgrade to node 24 (#167)
We currently get warnings during the PR build since `commitlint` requires Node >= 20. This PR upgrades node to the latest LTS release 24 for the commitlint GH action task. ``` npm warn EBADENGINE Unsupported engine { npm warn EBADENGINE package: 'global-directory@5.0.0', npm warn EBADENGINE required: { node: '>=20' }, npm warn EBADENGINE current: { node: 'v18.20.8', npm: '10.8.2' } npm warn EBADENGINE } npm warn EBADENGINE Unsupported engine { npm warn EBADENGINE package: 'ini@6.0.0', npm warn EBADENGINE required: { node: '^20.17.0 || >=22.9.0' }, npm warn EBADENGINE current: { node: 'v18.20.8', npm: '10.8.2' } npm warn EBADENGINE } ``` https://github.com/substrait-io/substrait-python/actions/runs/26420357425/job/77773667715?pr=165#step:5:75 Signed-off-by: Niels Pardon <par@zurich.ibm.com>
1 parent 1b77d17 commit bb05a83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/setup-node@v6
1212
with:
13-
node-version: "18"
13+
node-version: "24"
1414
- run: npm install @commitlint/config-conventional
1515
- run: >
1616
echo 'module.exports = {

0 commit comments

Comments
 (0)