Skip to content

Commit b6eb6a7

Browse files
ci(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] <[email protected]>
1 parent 10f08e5 commit b6eb6a7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
python-version: "3.8"
1616
- name: Cache multiple Pips
17-
uses: actions/cache@v4
17+
uses: actions/cache@v5
1818
with:
1919
path: |
2020
~/.cache/pip

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
python-version: "${{ env.PYTHON_VERSION_FOR_BUMPING }}"
2222
- name: Cache multiple paths
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: |
2626
~/.cache/pip
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646
- name: Cache multiple Pips
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: |
5050
~/.cache/pip
@@ -74,7 +74,7 @@ jobs:
7474
with:
7575
python-version: "${{ env.PYTHON_VERSION_FOR_BUMPING }}"
7676
- name: Cache virtual environment and pip
77-
uses: actions/cache@v4
77+
uses: actions/cache@v5
7878
with:
7979
path: |
8080
~/.cache/pip

.github/workflows/openapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: "3.10"
2020
- name: Cache Pip
2121
if: steps.verify-changed-openapi-specs.outputs.files_changed == 'true'
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
with:
2424
path: |
2525
~/.cache/pip

.github/workflows/pre-commit-autoupdate.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: "${{ env.PYTHON_VERSION_FOR_BUMPING }}"
1919
- name: Cache multiple paths
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: |
2323
~/.cache/pip

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
python-version: "${{ env.PYTHON_VERSION_FOR_PACKAGING }}"
2323
- name: Cache Pip
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: |
2727
~/.cache/pip

0 commit comments

Comments
 (0)