Skip to content

Commit

Permalink
[MNT] updates the actions in the doc build CI (#1673)
Browse files Browse the repository at this point in the history
Fixes #1672
  • Loading branch information
fkiraly authored Sep 20, 2024
1 parent f233d92 commit 588d10e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,15 @@ jobs:
shell: bash
steps:
- name: Check out Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }}
Expand All @@ -162,7 +162,7 @@ jobs:
run: make html --debug --jobs 2 SPHINXOPTS="-W"

- name: Upload built docs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: docs-results-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.requires }}
path: docs/build/html/
Expand Down

0 comments on commit 588d10e

Please sign in to comment.