Skip to content

Commit 58f35e6

Browse files
chore(deps)(deps): bump actions/cache in the all-dependencies group (#16)
Bumps the all-dependencies group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 88af25f commit 58f35e6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cd.yml

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

156156
- name: Cache pip Dependencies
157-
uses: actions/cache@v4
157+
uses: actions/cache@v5
158158
with:
159159
path: ~/.cache/pip
160160
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: '3.12'
2929

3030
- name: Cache pre-commit
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: ~/.cache/pre-commit
3434
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -57,7 +57,7 @@ jobs:
5757
python-version: '3.11'
5858

5959
- name: Cache pip Dependencies
60-
uses: actions/cache@v4
60+
uses: actions/cache@v5
6161
with:
6262
path: ~/.cache/pip
6363
key: ${{ runner.os }}-lint-pip-${{ hashFiles('**/pyproject.toml') }}
@@ -101,7 +101,7 @@ jobs:
101101
python-version: ${{ matrix.python-version }}
102102

103103
- name: Cache pip Dependencies
104-
uses: actions/cache@v4
104+
uses: actions/cache@v5
105105
with:
106106
path: ~/.cache/pip
107107
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
@@ -166,7 +166,7 @@ jobs:
166166
python-version: ${{ matrix.python-version }}
167167

168168
- name: Cache pip Dependencies
169-
uses: actions/cache@v4
169+
uses: actions/cache@v5
170170
with:
171171
path: ~/.cache/pip
172172
key: pypy-${{ matrix.python-version }}-pip-${{ hashFiles('**/pyproject.toml') }}

0 commit comments

Comments
 (0)