Skip to content

Commit 86c17c7

Browse files
committed
ci(dependency-check): fix schedule
1 parent c667c66 commit 86c17c7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/maven-dependency-check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ name: Maven Dependency Check
33

44
on:
55
schedule:
6-
- cron: "0 0 * * 0"
6+
# Every 6 days, to refresh the cached NVD database inside GitHub's 7-day
7+
# cache eviction window (see the "Cache dependency-check NVD database" step).
8+
# cron has no true "every N days", so */6 resets at the start of each month;
9+
# the gap between runs nonetheless stays at or below 6 days.
10+
- cron: "0 0 */6 * *"
711
workflow_dispatch:
812

913
permissions: {}

0 commit comments

Comments
 (0)