Cron Expression: 0 0 * * *

Every day at 00:00 (midnight).

Field Breakdown

FieldValue
Minute0
Hour0
Day of Month*
Month*
Day of Week*

Common Use Case

Daily cleanup, daily reports, end-of-day snapshots.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-04-27 00:001777248000
2026-04-28 00:001777334400
2026-04-29 00:001777420800
2026-04-30 00:001777507200
2026-05-01 00:001777593600

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 * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →