Skip to content

Commit f48e635

Browse files
authored
Merge pull request #189 from tkskto/renovate/actions-setup-node-3.x
chore(deps): update actions/setup-node action to v3
2 parents 37b57a8 + 2e76b01 commit f48e635

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v2
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm install

.github/workflows/publish-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111
# publish for npm package.
12-
- uses: actions/setup-node@v2
12+
- uses: actions/setup-node@v3
1313
with:
1414
node-version: '12.x'
1515
registry-url: 'https://registry.npmjs.org'
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2222
# publish for GitHub Package.
23-
- uses: actions/setup-node@v2
23+
- uses: actions/setup-node@v3
2424
with:
2525
registry-url: 'https://npm.pkg.github.com'
2626
- run: npm publish

0 commit comments

Comments
 (0)