Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
sudo apt-get install -y poppler-utils
if: ${{ needs.pre_job.outputs.should_skip != 'true' && startsWith(matrix.os, 'ubuntu') }}
- name: Cache Mac dependencies
uses: actions/cache@v4
uses: actions/cache@v5
if: needs.pre_job.outputs.should_skip != 'true' && matrix.os == 'macos-latest'
with:
path: ~/Library/Caches/Homebrew
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Windows dependencies cache
id: windowscache
if: needs.pre_job.outputs.should_skip != 'true' && matrix.os == 'windows-latest'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ github.workspace }}\tools
key: ${{ runner.os }}-${{ matrix.python-version }}-tools-${{ hashFiles('.github/workflows/pythontest.yml') }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
pip install tox
- name: tox env cache
if: ${{ needs.pre_job.outputs.should_skip != 'true' && !startsWith(runner.os, 'windows') }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }}
Expand Down
Loading