Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 3.2.4 to 4.0.0
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.4 to 4.0.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.2.4...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 22, 2024
1 parent 19f2d26 commit 9a9176e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
make download-poetry
- name: Set up cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
path: ~/.cache/pypoetry/virtualenvs
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
run: make download-poetry

- name: Set up pip cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
path: ~/.cache/pypoetry/virtualenvs
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}

- name: Set up mypy cache
uses: actions/cache@v3.2.4
uses: actions/cache@v4.0.0
with:
path: ${{ github.workspace }}/.mypy_cache
key: mypy-${{ matrix.python-version }}
Expand Down

0 comments on commit 9a9176e

Please sign in to comment.