Skip to content
Open
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 action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:

- name: Cache pip dependencies on Linux
if: ${{ startsWith(runner.os, 'Linux') }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('action.yml') }}
Expand All @@ -30,7 +30,7 @@ runs:

- name: Cache pip dependencies on macOS
if: ${{ startsWith(runner.os, 'macOS') }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/Library/Caches/pip
key: ${{ runner.os }}-pip-${{ hashFiles('action.yml') }}
Expand All @@ -39,7 +39,7 @@ runs:

- name: Cache pip dependencies on Windows
if: ${{ startsWith(runner.os, 'Windows') }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ hashFiles('action.yml') }}
Expand Down
Loading