workflows: fix cron schedule
Github actions do not recognize @daily. Cron instead will explicitly run at 05:00 UTC.
This commit is contained in:
parent
c14a209421
commit
afcdb285e1
1 changed files with 1 additions and 1 deletions
2
.github/workflows/coverity_scan.yml
vendored
2
.github/workflows/coverity_scan.yml
vendored
|
|
@ -3,7 +3,7 @@ name: Coverity Scan
|
||||||
on:
|
on:
|
||||||
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#scheduled-events
|
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#scheduled-events
|
||||||
schedule:
|
schedule:
|
||||||
- cron: @daily
|
- cron: '0 5 * * *' # Daily at 05:00 UTC
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
coverity_scan:
|
coverity_scan:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue