Skip to content

Commit cf714d6

Browse files
committedApr 29, 2024
ci: update workflows config.
1 parent ead023b commit cf714d6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
contents: write
1212
id-token: write
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 20
1818
registry-url: 'https://registry.npmjs.org'
1919

2020
- run: npm install
@@ -60,7 +60,7 @@ jobs:
6060
uses: jaywcjlove/changelog-generator@main
6161

6262
- name: Deploy
63-
uses: peaceiris/actions-gh-pages@v3
63+
uses: peaceiris/actions-gh-pages@v4
6464
with:
6565
commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
6666
github_token: ${{ secrets.GITHUB_TOKEN }}

‎.github/workflows/pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
build-test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-node@v3
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
1111
with:
12-
node-version: 18
12+
node-version: 20
1313

1414
- run: npm install
1515
- run: npm run build

0 commit comments

Comments
 (0)
Please sign in to comment.