Skip to content

Commit bba3ed3

Browse files
chore(deps): bump actions/cache from 4.2.2 to 4.2.3
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.2 to 4.2.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@d4323d4...5a3ec84) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 50e3853 commit bba3ed3

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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
35+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
72+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
79+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
139+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
145+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
235+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
241+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
352+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
358+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
455+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
461+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
558+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
564+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
681+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
687+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
788+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
795+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
842+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
42+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
39+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4040
with:
4141
path: ~/.cache/pip
4242
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)