Skip to content

Commit 3b1cfe8

Browse files
authored
Merge pull request #273 from netromdk/dependabot/github_actions/actions/cache-4.2.3
chore(deps): Bump actions/cache from 3.3.2 to 4.2.3
2 parents f11babb + deaeb0d commit 3b1cfe8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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@a26af69be951a213d495a4c3e4e4022e16d87065
2727
with:
2828
python-version: ${{ matrix.python-version }}
29-
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
29+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
3030
with:
3131
path: ~/.cache/pip
3232
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@704facf57e6136b1bc63b828d79edcd491f0ee84
31+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
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@704facf57e6136b1bc63b828d79edcd491f0ee84
31+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
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
@@ -82,21 +82,21 @@ jobs:
8282

8383
# The caches need to have the python version included since the
8484
# "misc/.coverage-requirements.txt" does not have version-pinning.
85-
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
85+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
8686
if: startsWith(matrix.os, 'ubuntu-latest')
8787
with:
8888
path: ~/.cache/pip
8989
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }}
9090
restore-keys: |
9191
${{ matrix.os }}-pip-${{ matrix.python-version }}-
92-
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
92+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
9393
if: startsWith(matrix.os, 'macos-latest')
9494
with:
9595
path: ~/Library/Caches/pip
9696
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }}
9797
restore-keys: |
9898
${{ matrix.os }}-pip-${{ matrix.python-version }}-
99-
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
99+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
100100
if: startsWith(matrix.os, 'windows-latest')
101101
with:
102102
path: ~\AppData\Local\pip\Cache

0 commit comments

Comments
 (0)