I have created a github action with the following code, which is supposed to run every day at 1am:
on:
schedule:
- cron: '0 1 * * *'
jobs:
update-stats:
runs-on: ubuntu-latest
steps:
# code
It looks pretty straight forward to me. The action runs, but completely out of schedule.
Mon, 12 Sep 2022 03:48:58 GMT
Current runner version: '2.296.1'
Mon, 12 Sep 2022 03:48:58 GMT Operating System
Mon, 12 Sep 2022 03:48:58 GMT Ubuntu
Mon, 12 Sep 2022 03:48:58 GMT 20.04.5
Mon, 12 Sep 2022 03:48:58 GMT LTS
Even if we take timezones in consideration, it is running at minute 48. How does it work?