Skip to content

Bump actions/cache from 3.3.1 to 4.0.2 #226

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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 .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
which python

- name: Set up Poetry cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
print("::set-output name=result::{}".format(result))

- name: Restore pre-commit cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: ~/.cache/pre-commit
key: ${{ steps.pre-commit-cache.outputs.result }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
python -m pip install --upgrade pip

- name: Set up Poetry cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: ${{ env.cc_venv }}
key: ${{ env.cc_venv }}-${{ matrix.python-version }}-${{ hashFiles('coefficient-project/poetry.lock') }}
Expand Down
Loading