Skip to content

Commit adc72f0

Browse files
AlexLovserclaude
andcommitted
Update the workflow actions to their current majors
actions/checkout v4 -> v7 and actions/setup-node v4 -> v6 in both workflows, and the CI check job moves from Node 22 to 24 so it matches the runtime the release job now uses. The test matrix deliberately stays 20/22/24: that is what proves the package honours its own `engines: node >=20`. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent 2284f96 commit adc72f0

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
check:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
21-
- uses: actions/setup-node@v4
20+
- uses: actions/checkout@v7
21+
- uses: actions/setup-node@v6
2222
with:
23-
node-version: "22.x"
23+
node-version: "24.x"
2424
cache: npm
2525
- run: npm ci
2626
- run: npm run lint
@@ -34,8 +34,8 @@ jobs:
3434
matrix:
3535
node-version: ["20.x", "22.x", "24.x"]
3636
steps:
37-
- uses: actions/checkout@v4
38-
- uses: actions/setup-node@v4
37+
- uses: actions/checkout@v7
38+
- uses: actions/setup-node@v6
3939
with:
4040
node-version: ${{ matrix.node-version }}
4141
cache: npm

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
contents: read
3434
id-token: write
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v7
3737
- uses: actions/setup-node@v6
3838
with:
3939
node-version: "24"

0 commit comments

Comments
 (0)