Skip to content

Commit 830d738

Browse files
authored
Merge pull request #49 from katayama8000/bump-version-on-ci
chore: update actions/checkout and actions/setup-node versions in CI and release workflows
2 parents c1c8a38 + 0567bcd commit 830d738

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: 📥 Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: 🟢 Setup Node.js
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v5
2222
with:
2323
node-version: '22'
2424
cache: 'npm'

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: Release
22

33
on:
44
workflow_dispatch:
@@ -15,19 +15,20 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
20-
fetch-depth: 0
20+
fetch-depth: 0
2121

2222
- name: Set Git user
2323
run: |
2424
git config --global user.name "github-actions[bot]"
2525
git config --global user.email "github-actions[bot]@users.noreply.github.com"
2626
2727
- name: Setup Node.js
28-
uses: actions/setup-node@v4
28+
uses: actions/setup-node@v5
2929
with:
3030
node-version: 22
31+
cache: 'npm'
3132

3233
- name: Install dependencies
3334
run: npm ci

0 commit comments

Comments
 (0)