Skip to content

Commit db4a503

Browse files
committed
Update GitHub Actions workflow to use latest action versions and Python 3.13
1 parent 2c45050 commit db4a503

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/docs.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,19 @@ jobs:
1010
name: Deploy document
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v5
1414
- name: Set up Python
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v4
1616
with:
17-
python-version: '3.10'
17+
python-version: '3.13'
1818
- name: Build documentation
1919
run: |
2020
pip3 install -U .[docs]
2121
pdoc --html --config show_source_code=False --force voicevox
2222
2323
- name: Upload artifact
24-
uses: actions/upload-pages-artifact@v1
24+
uses: actions/upload-pages-artifact@v4
25+
id: deployment
2526
with:
2627
path: ./html/voicevox
2728
deploy:
@@ -36,4 +37,4 @@ jobs:
3637
steps:
3738
- name: Deploy to GitHub Pages
3839
id: deployment
39-
uses: actions/deploy-pages@v1
40+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)