Skip to content

Commit 0fef796

Browse files
dependabot[bot]jkglasbrenner
authored andcommitted
build(deps): bump actions/cache from 4.2.0 to 4.2.2
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.0...v4.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 20cdfc5 commit 0fef796

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/pip-compile.yml

+3-3
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@v4.2.0
70+
uses: actions/cache@v4.2.2
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@v4.2.0
79+
uses: actions/cache@v4.2.2
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@v4.2.0
143+
uses: actions/cache@v4.2.2
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

+1-1
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@v4.2.0
47+
uses: actions/cache@v4.2.2
4848
with:
4949
path: ${{ steps.pip-cache.outputs.dir }}
5050
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}

.github/workflows/tox-tests.yml

+3-3
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@v4.2.0
57+
uses: actions/cache@v4.2.2
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@v4.2.0
109+
uses: actions/cache@v4.2.2
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@v4.2.0
118+
uses: actions/cache@v4.2.2
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)