Skip to content

Commit 903e326

Browse files
ci: bump actions/cache from 3 to 4
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-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 113ba00 commit 903e326

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
python-version: ${{ matrix.python-version }}
3030

3131
# Add caching for faster builds
32-
- uses: actions/cache@v3
32+
- uses: actions/cache@v4
3333
with:
3434
path: |
3535
~/.cache/pip

.github/workflows/docs.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.12"
1919

20-
- uses: actions/cache@v3
20+
- uses: actions/cache@v4
2121
with:
2222
path: ~/.cache/pip
2323
key: ${{ runner.os }}-pip-docs-${{ hashFiles('docs/requirements.txt') }}

.github/workflows/sync-requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: "3.11"
2929

3030
- name: Cache pip packages
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.cache/pip
3434
key: ${{ runner.os }}-pip-sync-${{ hashFiles('requirements-dev.txt') }}

0 commit comments

Comments
 (0)