Cron Expression: 0 0 * * *
Every day at 00:00 (midnight).
Field Breakdown
| Field | Value |
|---|---|
| Minute | 0 |
| Hour | 0 |
| Day of Month | * |
| Month | * |
| Day of Week | * |
Common Use Case
Daily cleanup, daily reports, end-of-day snapshots.
Sample Fire Times (UTC)
| When | Unix Timestamp |
|---|---|
| 2026-04-27 00:00 | 1777248000 |
| 2026-04-28 00:00 | 1777334400 |
| 2026-04-29 00:00 | 1777420800 |
| 2026-04-30 00:00 | 1777507200 |
| 2026-05-01 00:00 | 1777593600 |
Sample times computed at build; your scheduler will fire on its own clock.
Equivalents in Popular Schedulers
crontab (Linux/macOS)
0 0 * * * /path/to/your/script.sh
GitHub Actions (.github/workflows/*.yml)
on:
schedule:
- cron: '0 0 * * *'
AWS EventBridge (cron format)
cron(0 0 * * *) # Note: AWS uses 6 fields with year
Kubernetes CronJob
spec: schedule: "0 0 * * *"