workflows: fix cron schedule

Github actions do not recognize @daily. Cron instead will explicitly run at 05:00
UTC.
This commit is contained in:
Jacob Kozol 2021-11-11 18:05:41 +01:00 committed by Alexander Todorov
parent c14a209421
commit afcdb285e1

View file

@ -3,7 +3,7 @@ name: Coverity Scan
on:
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#scheduled-events
schedule:
- cron: @daily
- cron: '0 5 * * *' # Daily at 05:00 UTC
jobs:
coverity_scan: