Skip to content

Commit c0805c3

Browse files
committed
Fix docs workflow.
1 parent 77b95e8 commit c0805c3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-and-publish-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-python@v4
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.10'
15+
python-version: "3.10"
1616
cache: "pip"
1717
cache-dependency-path: "**/pyproject.toml"
1818
- run: pip install -e .
1919
- run: pip install -r pdoc/requirements.txt
2020
- run: pdoc riid -o docs/ --html --template-dir pdoc
2121
- run: echo '<meta http-equiv="refresh" content="0; url=./riid/index.html" />' > docs/index.html
22-
- uses: actions/upload-pages-artifact@v2
22+
- uses: actions/upload-pages-artifact@v3
2323
with:
2424
path: docs/
2525
deploy:
@@ -34,4 +34,4 @@ jobs:
3434
steps:
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)