Skip to content

Commit 11f3c4e

Browse files
committed
Fix GitHub Actions versions to latest stable releases
1 parent e7ea984 commit 11f3c4e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
fetch-depth: 0
3636

3737
- name: Setup Python
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: '3.x'
4141

4242
- name: Cache dependencies
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ~/.cache/pip
4646
key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }}
@@ -53,14 +53,14 @@ jobs:
5353
pip install -r docs/requirements.txt
5454
5555
- name: Setup Pages
56-
uses: actions/configure-pages@v3
56+
uses: actions/configure-pages@v4
5757

5858
- name: Build with MkDocs
5959
run: |
6060
mkdocs build --verbose --strict
6161
6262
- name: Upload artifact
63-
uses: actions/upload-pages-artifact@v2
63+
uses: actions/upload-pages-artifact@v3
6464
with:
6565
path: ./site
6666

@@ -75,4 +75,4 @@ jobs:
7575
steps:
7676
- name: Deploy to GitHub Pages
7777
id: deployment
78-
uses: actions/deploy-pages@v2
78+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)