Skip to content

Commit 63d25c6

Browse files
chore: update actions/setup-node action to v5 (#712)
* chore: update actions/setup-node action to v5 * chore: pnpm/action-setupを先にする --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: piyo <[email protected]>
1 parent a4c8bfd commit 63d25c6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/publishRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
with:
1818
ref: release-candidate
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v4
20+
- uses: pnpm/action-setup@v4
21+
- uses: actions/setup-node@v5
2122
with:
2223
node-version: 22
2324
registry-url: 'https://registry.npmjs.org'
24-
- uses: pnpm/action-setup@v4
2525
- name: git config
2626
run: |
2727
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

.github/workflows/startRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
29-
- uses: actions/setup-node@v4
29+
- uses: pnpm/action-setup@v4
30+
- uses: actions/setup-node@v5
3031
with:
3132
node-version: 22
32-
- uses: pnpm/action-setup@v4
3333
- name: git config
3434
run: |
3535
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
with:
1616
fetch-depth: 0
1717

18+
- name: Setup pnpm
19+
uses: pnpm/action-setup@v4
20+
1821
- name: Setup Node.js
19-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v5
2023
with:
2124
node-version: 22
2225

23-
- name: Setup pnpm
24-
uses: pnpm/action-setup@v4
25-
2626
- name: Install dependencies
2727
run: pnpm install
2828

0 commit comments

Comments
 (0)