Skip to content

Commit 5218dfa

Browse files
build(deps): bump actions/cache from 5.0.1 to 5.0.3
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.1 to 5.0.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.1...v5.0.3) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0fcb4b0 commit 5218dfa

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/pip-compile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: cache dependencies
6969
if: ${{ matrix.os != 'windows-latest' }}
70-
uses: actions/cache@v5.0.1
70+
uses: actions/cache@v5.0.3
7171
with:
7272
path: ${{ steps.pip-cache.outputs.dir }}
7373
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini', 'requirements-dev*.in') }}
@@ -76,7 +76,7 @@ jobs:
7676
7777
- name: cache dependencies (Windows)
7878
if: ${{ matrix.os == 'windows-latest' }}
79-
uses: actions/cache@v5.0.1
79+
uses: actions/cache@v5.0.3
8080
with:
8181
path: ${{ steps.pip-cache-win.outputs.dir }}
8282
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini', 'requirements-dev*.in') }}
@@ -140,7 +140,7 @@ jobs:
140140
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
141141

142142
- name: cache dependencies
143-
uses: actions/cache@v5.0.1
143+
uses: actions/cache@v5.0.3
144144
with:
145145
path: ${{ steps.pip-cache.outputs.dir }}
146146
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini', '**/requirements-dev*.in', '**/docker/pip-tools/*-requirements.in') }}

.github/workflows/sphinx-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
4545

4646
- name: cache dependencies
47-
uses: actions/cache@v5.0.1
47+
uses: actions/cache@v5.0.3
4848
with:
4949
path: ${{ steps.pip-cache.outputs.dir }}
5050
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}

.github/workflows/tox-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
5555

5656
- name: cache dependencies
57-
uses: actions/cache@v5.0.1
57+
uses: actions/cache@v5.0.3
5858
with:
5959
path: ${{ steps.pip-cache.outputs.dir }}
6060
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}
@@ -106,7 +106,7 @@ jobs:
106106

107107
- name: cache dependencies
108108
if: ${{ matrix.os != 'windows-latest' }}
109-
uses: actions/cache@v5.0.1
109+
uses: actions/cache@v5.0.3
110110
with:
111111
path: ${{ steps.pip-cache.outputs.dir }}
112112
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: cache dependencies (Windows)
117117
if: ${{ matrix.os == 'windows-latest' }}
118-
uses: actions/cache@v5.0.1
118+
uses: actions/cache@v5.0.3
119119
with:
120120
path: ${{ steps.pip-cache-win.outputs.dir }}
121121
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}

0 commit comments

Comments
 (0)