Skip to content

Commit b621791

Browse files
chore(deps): Bump actions/cache from 4.3.0 to 5.0.3
Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 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@0057852...cdf6c1f) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c8c8ab5 commit b621791

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548
2727
with:
2828
python-version: ${{ matrix.python-version }}
29-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
29+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
3030
with:
3131
path: ~/.cache/pip
3232
key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }}

.github/workflows/security-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548
2828
with:
2929
python-version: ${{ matrix.python-version }}
30-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
30+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
3131
with:
3232
path: ~/.cache/pip
3333
key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }}

.github/workflows/snyk-schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
node-version: 18
3030

31-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
31+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
3232
with:
3333
path: ~/.cache/pip
3434
key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }}

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
node-version: 18
3030

31-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
31+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
3232
with:
3333
path: ~/.cache/pip
3434
key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,21 +90,21 @@ jobs:
9090

9191
# The caches need to have the python version included since the
9292
# "misc/.coverage-requirements.txt" does not have version-pinning.
93-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
93+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
9494
if: startsWith(matrix.os, 'ubuntu-latest')
9595
with:
9696
path: ~/.cache/pip
9797
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }}
9898
restore-keys: |
9999
${{ matrix.os }}-pip-${{ matrix.python-version }}-
100-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
100+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
101101
if: startsWith(matrix.os, 'macos-latest')
102102
with:
103103
path: ~/Library/Caches/pip
104104
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }}
105105
restore-keys: |
106106
${{ matrix.os }}-pip-${{ matrix.python-version }}-
107-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
107+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
108108
if: startsWith(matrix.os, 'windows-latest')
109109
with:
110110
path: ~\AppData\Local\pip\Cache

0 commit comments

Comments
 (0)