Skip to content

Commit 660b822

Browse files
dependabot[bot]inosmeet
authored andcommitted
chore(deps): bump actions/cache from 3.3.2 to 4.0.0 (intel#3739)
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@704facf...13aacd8) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f86dcb8 commit 660b822

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/cve_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
3232
- name: Get cached database
33-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
33+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
3434
with:
3535
path: cache
3636
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}

.github/workflows/testing.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ jobs:
9898
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
9999
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
100100
- name: Get today's cached database
101-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
101+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
102102
id: todays-cache
103103
with:
104104
path: cache
105105
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
106106
- name: Get yesterday's cached database if today's is not available
107-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
107+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
108108
if: steps.todays-cache.outputs.cache-hit != 'true'
109109
with:
110110
path: cache
@@ -196,13 +196,13 @@ jobs:
196196
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
197197
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
198198
- name: Get today's cached database
199-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
199+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
200200
id: todays-cache
201201
with:
202202
path: cache
203203
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
204204
- name: Get yesterday's cached database if today's is not available
205-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
205+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
206206
if: steps.todays-cache.outputs.cache-hit != 'true'
207207
with:
208208
path: cache
@@ -309,13 +309,13 @@ jobs:
309309
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
310310
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
311311
- name: Get today's cached database
312-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
312+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
313313
id: todays-cache
314314
with:
315315
path: cache
316316
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
317317
- name: Get yesterday's cached database if today's is not available
318-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
318+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
319319
if: steps.todays-cache.outputs.cache-hit != 'true'
320320
with:
321321
path: cache
@@ -412,14 +412,14 @@ jobs:
412412
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.DATE }}"
413413
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.YESTERDAY }}"
414414
- name: Get today's cached database
415-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
415+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
416416
id: todays-cache
417417
with:
418418
path: cache
419419
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.DATE }}
420420
enableCrossOsArchive: true
421421
- name: Get yesterday's cached database if today's is not available
422-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
422+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
423423
if: steps.todays-cache.outputs.cache-hit != 'true'
424424
with:
425425
path: cache
@@ -492,14 +492,14 @@ jobs:
492492
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.DATE }}"
493493
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.YESTERDAY }}"
494494
- name: Get today's cached database
495-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
495+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
496496
id: todays-cache
497497
with:
498498
path: cache
499499
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.DATE }}
500500
enableCrossOsArchive: true
501501
- name: Get yesterday's cached database if today's is not available
502-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
502+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
503503
if: steps.todays-cache.outputs.cache-hit != 'true'
504504
with:
505505
path: cache
@@ -533,7 +533,7 @@ jobs:
533533
test/test_cli.py
534534
test/test_cvedb.py
535535
- name: Cache conda
536-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
536+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
537537
env:
538538
# Increase to reset cache if requirements.txt file has not changed
539539
CACHE_NUMBER: 0

.github/workflows/update-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
id: get-date
3636
run: |
3737
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
38-
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
38+
- uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
3939
with:
4040
path: cache
4141
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}

.github/workflows/update-js-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: python .github/workflows/update_js_dependencies.py
3737

3838
- name: Get cached Python packages
39-
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
39+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
4040
with:
4141
path: ~/.cache/pip
4242
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)