Skip to content

Commit c7be62e

Browse files
committed
update action to require node24
1 parent 8f0dead commit c7be62e

6 files changed

Lines changed: 16485 additions & 23460 deletions

File tree

.github/workflows/check.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ jobs:
3939
runs-on: ${{ matrix.system }}
4040
steps:
4141
- uses: actions/checkout@v5
42+
- name: Setup Node.js
43+
id: setup-node
44+
uses: actions/setup-node@v6
45+
with:
46+
node-version: '24'
47+
cache: npm
4248
- uses: astral-sh/setup-uv@v6
4349
if: matrix.installer == 'uv'
4450
- run: npm ci

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
default: latest
1111
required: false
1212
runs:
13-
using: node20
13+
using: node24
1414
main: 'dist/index.js'
1515
branding:
1616
icon: terminal

0 commit comments

Comments
 (0)