Skip to content

Commit 2b1aad7

Browse files
muuvmuuvclaude
andcommitted
ci: bump GitHub Actions to latest majors
Update actions/checkout (v4->v7), actions/setup-node (v4->v6), and pnpm/action-setup (v4->v6) so the workflows run on the Node 24 runtime and no longer trigger the Node 20 deprecation warning. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 2cf1ed2 commit 2b1aad7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v7
1818

1919
- name: Setup Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: 24
2323
registry-url: "https://registry.npmjs.org"
2424

2525
- name: Setup pnpm
26-
uses: pnpm/action-setup@v4
26+
uses: pnpm/action-setup@v6
2727
with:
2828
version: 10
2929
run_install: true

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
environment: production
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v7
2020

2121
- name: Setup Node.js
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: 24
2525
registry-url: "https://registry.npmjs.org"
2626

2727
- name: Setup pnpm
28-
uses: pnpm/action-setup@v4
28+
uses: pnpm/action-setup@v6
2929
with:
3030
version: 10
3131
run_install: true

0 commit comments

Comments
 (0)