Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- run: |
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- name: Lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: Set Node.js 20.x
- name: Set Node.js 24.x
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: 20.x
node-version: 24.x
- name: Install dependencies
run: npm ci
- name: Rebuild the dist/ directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebuild-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- run: npm run all
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- run: |
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- name: Build Action
Expand All @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # 3.9.1
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- name: Build Action
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v24
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ outputs:
pr_labels:
description: The PR Labels if any was found.
runs:
using: node20
using: node24
main: 'dist/index.js'
branding:
icon: git-pull-request
Expand Down
Loading