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-09-16 00:00 | 1789516800 |
| 2026-09-17 00:00 | 1789603200 |
| 2026-09-18 00:00 | 1789689600 |
| 2026-09-19 00:00 | 1789776000 |
| 2026-09-20 00:00 | 1789862400 |
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 * * *"