Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/cache action to v4 #286

Merged
merged 1 commit into from
Jan 18, 2024
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/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ runs:
# Poetry depends on OS, Python version and Poetry version.
- name: Cache Poetry
id: cache-poetry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "${{ inputs.poetry-home }}"
key: "poetry-${{ runner.os }}-${{ inputs.python-version }}-${{ inputs.poetry-version }}"

# Poetry cache depends on OS, Python version and Poetry version.
- name: Cache Poetry cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.cache/pypoetry"
key: "poetry-cache-${{ runner.os }}-${{ inputs.python-version }}-${{ inputs.poetry-version }}"

# virtualenv cache should depends on OS, Python version and `poetry.lock`.
- name: Cache Packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "${{ github.workspace }}/.venv"
key: "poetry-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('**/poetry.lock') }}"
Expand Down
Loading