Skip to content

Commit 0788f70

Browse files
authored
chore: fix github workflow to upload gh pages (#5)
1 parent 58839bc commit 0788f70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
# 👇 Build steps
1818
- name: Set up Node.js
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: 24.x
2222
cache: npm
@@ -28,10 +28,10 @@ jobs:
2828
- name: Setup Pages
2929
uses: actions/configure-pages@v3
3030
- name: Upload artifact
31-
uses: actions/upload-pages-artifact@v2
31+
uses: actions/upload-pages-artifact@v3
3232
with:
3333
# 👇 Build output path
3434
path: build
3535
- name: Deploy to GitHub Pages
3636
id: deployment
37-
uses: actions/deploy-pages@v2
37+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)