Skip to content

Commit ecf5a80

Browse files
committed
Fix mdbook GitHub Action
Rev actions versions to avoid using deprecated actions
1 parent 6ce9d46 commit ecf5a80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/mdbook.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pages: write # To push to a GitHub Pages site
1313
id-token: write # To update the deployment status
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Install latest mdbook
@@ -27,11 +27,11 @@ jobs:
2727
cd doc
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@v4
3333
with:
3434
path: 'doc/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)