Skip to content

Commit 2dbab4f

Browse files
committed
ci: Upgrade docs deployment actions
Seeing this error when deploying docs: Error: Missing download info for actions/upload-artifact@v3 It's probably upload-pages-artifact@v1 being deprecated. So upgrade that. And upgrade the other ones as well - might as well. Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
1 parent 9636d5f commit 2dbab4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
cd book
2828
mdbook build
2929
- name: Setup Pages
30-
uses: actions/configure-pages@v2
30+
uses: actions/configure-pages@v5
3131
- name: Upload artifact
32-
uses: actions/upload-pages-artifact@v1
32+
uses: actions/upload-pages-artifact@v3
3333
with:
3434
path: 'book/book'
3535
- name: Deploy to GitHub Pages
3636
id: deployment
37-
uses: actions/deploy-pages@v1
37+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)