Skip to content

Commit 43d070e

Browse files
Copilotfelickz
andauthored
Migrate action runtime and workflows from node20 to node24 (#210)
* Initial plan * Update action.yml to use node24 instead of node20 Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> * Update check-dist.yml to use Node.js 24.x instead of 20.x Co-authored-by: felickz <1760475+felickz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: felickz <1760475+felickz@users.noreply.github.com>
1 parent 94f5dac commit 43d070e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/check-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v6
2525

26-
- name: Set Node.js 20.x
26+
- name: Set Node.js 24.x
2727
uses: actions/setup-node@v6.2.0
2828
with:
29-
node-version: 20.x
29+
node-version: 24.x
3030

3131
- name: Install dependencies
3232
run: npm ci

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ inputs:
1818
required: false
1919
description: 'The output SARIF file path, defaults to the input SARIF file path'
2020
runs:
21-
using: 'node20'
21+
using: 'node24'
2222
main: 'dist/index.js'

0 commit comments

Comments
 (0)