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: 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: