Skip to content

Commit

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

---
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 Aug 1, 2024
1 parent a4a6e65 commit 14a0dee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "BIN_DIR=$(pipx environment -v PIPX_BIN_DIR)" >> $GITHUB_OUTPUT
echo "LOCAL_VENVS=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT
- name: Cache poetry
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: ${{ runner.os }}-pipx@${{ steps.pipx-env.outputs.VERSION }}[email protected]
path: |
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
echo "HEAD=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
echo "MERGE_BASE=$(git merge-base HEAD origin/main)" >> $GITHUB_OUTPUT
- name: Cache mypy
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: mypy-cache-${{ steps.git-rev.outputs.HEAD }}
restore-keys: |
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
echo "BIN_DIR=$(pipx environment -v PIPX_BIN_DIR)" >> $GITHUB_OUTPUT
echo "LOCAL_VENVS=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT
- name: Cache poetry
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: ${{ runner.os }}-pipx@${{ steps.pipx-env.outputs.VERSION }}[email protected]
path: |
Expand All @@ -120,7 +120,7 @@ jobs:
poetry config virtualenvs.in-project true
echo 'PYTHON = "./.venv/bin/python"' > .env
- name: Cache python dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: |
venv-without-dev-${{ runner.os }}[email protected]@1.8.1-${{ hashFiles('poetry.lock') }}
Expand Down

0 comments on commit 14a0dee

Please sign in to comment.