Skip to content

Commit 32ce313

Browse files
Bump actions/cache from 4 to 5 (#568)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1467b11 commit 32ce313

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
- name: Setup Python
2525
uses: actions/setup-python@v6
2626
- name: Cache PyPI
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
key: pip-lint-${{ hashFiles('requirements/*.txt') }}
3030
path: ~/.cache/pip
3131
restore-keys: |
3232
pip-lint-
3333
- name: Cache pre-commit hooks
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/.cache/pre-commit
3737
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
@@ -65,7 +65,7 @@ jobs:
6565
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT # - name: Cache
6666
shell: bash
6767
- name: Cache PyPI
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
key: pip-ci-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements/*.txt') }}
7171
path: ${{ steps.pip-cache.outputs.dir }}

0 commit comments

Comments
 (0)