Skip to content

Commit 0dc9e4e

Browse files
chore(deps): bump actions/cache from 4.2.0 to 4.2.1 (intel#4851)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@1bd1e32...0c907a7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4a29cd2 commit 0dc9e4e

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

.github/workflows/cve_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
3434
- name: Get cached database
35-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
35+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
3636
with:
3737
path: cache
3838
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}

.github/workflows/fuzzing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ jobs:
6969
echo "yesterday=$(/bin/date -d "-1 day" -u "+%Y%m%d")" >> $GITHUB_OUTPUT
7070
7171
- name: Get today's cached database
72-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
72+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
7373
id: todays-cache
7474
with:
7575
path: fuzz-cache
7676
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
7777

7878
- name: Get yesterday's cached database if today's is not available
79-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
79+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
8080
if: steps.todays-cache.outputs.cache-hit != 'true'
8181
with:
8282
path: fuzz-cache

.github/workflows/testing.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,13 @@ jobs:
136136
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
137137
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
138138
- name: Get today's cached database
139-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
139+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
140140
id: todays-cache
141141
with:
142142
path: cache
143143
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
144144
- name: Get yesterday's cached database if today's is not available
145-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
145+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
146146
if: steps.todays-cache.outputs.cache-hit != 'true'
147147
with:
148148
path: cache
@@ -232,13 +232,13 @@ jobs:
232232
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
233233
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
234234
- name: Get today's cached database
235-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
235+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
236236
id: todays-cache
237237
with:
238238
path: cache
239239
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
240240
- name: Get yesterday's cached database if today's is not available
241-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
241+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
242242
if: steps.todays-cache.outputs.cache-hit != 'true'
243243
with:
244244
path: cache
@@ -349,13 +349,13 @@ jobs:
349349
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
350350
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
351351
- name: Get today's cached database
352-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
352+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
353353
id: todays-cache
354354
with:
355355
path: cache
356356
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
357357
- name: Get yesterday's cached database if today's is not available
358-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
358+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
359359
if: steps.todays-cache.outputs.cache-hit != 'true'
360360
with:
361361
path: cache
@@ -452,13 +452,13 @@ jobs:
452452
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
453453
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
454454
- name: Get today's cached database
455-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
455+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
456456
id: todays-cache
457457
with:
458458
path: cache
459459
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
460460
- name: Get yesterday's cached database if today's is not available
461-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
461+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
462462
if: steps.todays-cache.outputs.cache-hit != 'true'
463463
with:
464464
path: cache
@@ -555,13 +555,13 @@ jobs:
555555
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
556556
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
557557
- name: Get today's cached database
558-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
558+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
559559
id: todays-cache
560560
with:
561561
path: cache
562562
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
563563
- name: Get yesterday's cached database if today's is not available
564-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
564+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
565565
if: steps.todays-cache.outputs.cache-hit != 'true'
566566
with:
567567
path: cache
@@ -678,13 +678,13 @@ jobs:
678678
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}"
679679
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.yesterday }}"
680680
- name: Get today's cached database
681-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
681+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
682682
id: todays-cache
683683
with:
684684
path: cache
685685
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.date }}
686686
- name: Get yesterday's cached database if today's is not available
687-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
687+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
688688
if: steps.todays-cache.outputs.cache-hit != 'true'
689689
with:
690690
path: cache
@@ -785,14 +785,14 @@ jobs:
785785
echo "Today's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.DATE }}"
786786
echo "Yesterday's Cache Key: Linux-cve-bin-tool-${{ steps.get-date.outputs.YESTERDAY }}"
787787
- name: Get today's cached database
788-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
788+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
789789
id: todays-cache
790790
with:
791791
path: cache
792792
key: Linux-cve-bin-tool-${{ steps.get-date.outputs.DATE }}
793793
enableCrossOsArchive: true
794794
- name: Get yesterday's cached database if today's is not available
795-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
795+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
796796
if: steps.todays-cache.outputs.cache-hit != 'true'
797797
with:
798798
path: cache
@@ -839,7 +839,7 @@ jobs:
839839
test/test_cli.py
840840
test/test_cvedb.py
841841
- name: Cache conda
842-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
842+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
843843
env:
844844
# Increase to reset cache if requirements.txt file has not changed
845845
CACHE_NUMBER: 0

.github/workflows/update-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
id: get-date
4040
run: |
4141
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
42-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
42+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
4343
with:
4444
path: cache
4545
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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
39+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
4040
with:
4141
path: ~/.cache/pip
4242
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)