Skip to content

Commit 9d600f6

Browse files
Merge pull request #353 from hankei6km/dependabot/github_actions/actions/setup-node-6
2 parents faab6f5 + 661e810 commit 9d600f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/gh_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v5
1919

2020
# .npmrc ファイルをセットアップして GitHub Packages に公開する
21-
- uses: actions/setup-node@v5
21+
- uses: actions/setup-node@v6
2222
with:
2323
node-version: '18.x'
2424
registry-url: 'https://npm.pkg.github.com'

.github/workflows/npm_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v5
3131

3232
# npm に公開するように .npmrc ファイルを設定する
33-
- uses: actions/setup-node@v5
33+
- uses: actions/setup-node@v6
3434
with:
3535
node-version: '18.x'
3636
registry-url: 'https://registry.npmjs.org'

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v5
2121

2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v5
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626

0 commit comments

Comments
 (0)