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
6 changes: 3 additions & 3 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Upgrade Yarn
run: |
corepack enable
yarn set version stable

- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: 22
node-version: 24
cache: yarn

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Upgrade Yarn
run: |
corepack enable
yarn set version stable

- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 22
node-version: 24
cache: yarn

- run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ outputs:
resultsJson:
description: 'The resulting stats stored as a step output variable in JSON format.'
runs:
using: node20
using: node24
main: 'dist/index.js'
branding:
icon: 'award'
Expand Down
Loading