Skip to content

Commit ee4a2c5

Browse files
dependabot[bot]mkoura
authored andcommitted
chore(deps): bump actions/cache from 4 to 5
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>
1 parent 8a061cd commit ee4a2c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/repo_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
installer-parallel: true
2828
- name: Load cached venv
2929
id: cached-poetry-dependencies
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: .venv
3333
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}
3434
- name: Install project
3535
run: SETUPTOOLS_ENABLE_FEATURES="legacy-editable" POETRY_VIRTUALENVS_PATH="$PWD" poetry install --no-interaction --with dev
3636
- name: Load cached pre-commit env
3737
id: cached-pre-commit
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.cache/pre-commit
4141
key: pre-commit-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }}

0 commit comments

Comments
 (0)