Skip to content

Commit 57079c0

Browse files
ci: ⬆️ bump actions/cache from 4 to 5 (#132)
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 b942610 commit 57079c0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/api-docs-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
python-version: "3.10"
2424

25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-pip-apidocs-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }}

.github/workflows/python-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222
allow-prereleases: true
2323

24-
- uses: actions/cache@v4
24+
- uses: actions/cache@v5
2525
with:
2626
path: ~/.cache/pip
2727
key: ${{ runner.os }}-pip-build-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }}

.github/workflows/python-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
python-version: "3.13"
1919

20-
- uses: actions/cache@v4
20+
- uses: actions/cache@v5
2121
with:
2222
path: ~/.cache/pip
2323
key: ${{ runner.os }}-pip-lint-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }}

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
allow-prereleases: true
2323

2424

25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-pip-test-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }}

0 commit comments

Comments
 (0)