Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 17, 2024
1 parent 655816c commit efc2892
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -31,13 +31,13 @@ jobs:
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Cache Poetry cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: poetry-cache-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ env.MAIN_PYTHON_VERSION }}-${{ env.POETRY_VERSION }}

- name: Cache packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ env.MAIN_PYTHON_VERSION }}-${{ hashFiles('**/poetry.lock') }}
Expand Down Expand Up @@ -70,13 +70,13 @@ jobs:
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Cache Poetry cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: poetry-cache-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ env.POETRY_VERSION }}

- name: Cache packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit efc2892

Please sign in to comment.