Skip to content

Commit 70b42d1

Browse files
author
salacoste
committed
fix: update GitHub Actions to use latest versions
Update deprecated action versions: - actions/setup-python: v4 -> v5 - actions/upload-pages-artifact: v2 -> v3 - actions/deploy-pages: v2 -> v4 Fixes deprecation warning for artifact actions.
1 parent 0808794 commit 70b42d1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 0 # Full history for git-revision-date plugin
3434

3535
- name: Setup Python
36-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v5
3737
with:
3838
python-version: '3.11'
3939
cache: 'pip'
@@ -53,13 +53,13 @@ jobs:
5353
mkdocs build --strict --verbose
5454
5555
- name: Upload artifact
56-
uses: actions/upload-pages-artifact@v2
56+
uses: actions/upload-pages-artifact@v3
5757
with:
5858
path: ./site
5959

6060
- name: Deploy to GitHub Pages
6161
id: deployment
62-
uses: actions/deploy-pages@v2
62+
uses: actions/deploy-pages@v4
6363

6464
- name: Deployment Summary
6565
run: |

0 commit comments

Comments
 (0)