Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 75b19a0

Browse files
authored
Upgrade CI actions version
1 parent d8f9ad9 commit 75b19a0

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repo
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 22
2222
cache: 'yarn'
2323

2424
- name: Run install
25-
uses: borales/actions-yarn@v4
25+
uses: borales/actions-yarn@v5
2626
with:
2727
cmd: install --frozen-lockfile
2828

2929
- name: Run ESLint
30-
uses: borales/actions-yarn@v4
30+
uses: borales/actions-yarn@v5
3131
with:
3232
cmd: run lint
3333

3434
- name: Build production bundle
35-
uses: borales/actions-yarn@v4
35+
uses: borales/actions-yarn@v5
3636
with:
3737
cmd: build
3838

3939
- name: Upload production-ready build files
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: production-files
4343
path: ./dist
@@ -50,13 +50,13 @@ jobs:
5050

5151
steps:
5252
- name: Download artifact
53-
uses: actions/download-artifact@v3
53+
uses: actions/download-artifact@v4
5454
with:
5555
name: production-files
5656
path: ./dist
5757

5858
- name: Deploy to GitHub Pages
59-
uses: peaceiris/actions-gh-pages@v3
59+
uses: peaceiris/actions-gh-pages@v4
6060
with:
6161
github_token: ${{ secrets.GITHUB_TOKEN }}
6262
publish_dir: ./dist

0 commit comments

Comments
 (0)