Aarunya AppsAarunya Apps

Twice Daily Cron Expression 0 0,12 * * *

Cron Expression

0 0,12 * * *

What it means

Runs twice a day at midnight and noon

Handy for bi-daily database backups, sending both a morning and evening digest email, or refreshing long-lived caches that need more than daily updates.

Next 8 Scheduled Runs (UTC)

  1. 1.Thu, 25 Jun 2026 00:00:00 GMT
  2. 2.Thu, 25 Jun 2026 12:00:00 GMT
  3. 3.Fri, 26 Jun 2026 00:00:00 GMT
  4. 4.Fri, 26 Jun 2026 12:00:00 GMT
  5. 5.Sat, 27 Jun 2026 00:00:00 GMT
  6. 6.Sat, 27 Jun 2026 12:00:00 GMT
  7. 7.Sun, 28 Jun 2026 00:00:00 GMT
  8. 8.Sun, 28 Jun 2026 12:00:00 GMT

Platform Snippets

GitHub Actions

- cron: '0 0,12 * * *'

Kubernetes CronJob

schedule: "0 0,12 * * *"

AWS EventBridge

cron(0 0,12 * * ? *)

AWS uses a 6-field format with year and requires either DOM or DOW to be ?.

systemd Timer

[Timer]
OnCalendar=*-*-* 0,12:00:00
Persistent=true

Want to decode a different expression or test your own?

Test this expression interactively →

FAQ

What does the cron expression 0 0,12 * * * mean?

Runs twice a day at midnight and noon. Handy for bi-daily database backups, sending both a morning and evening digest email, or refreshing long-lived caches that need more than daily updates.

How do I use 0 0,12 * * * in GitHub Actions?

Add a schedule trigger under the "on" key in your workflow YAML: on: schedule: - cron: '0 0,12 * * *'. This will run your workflow runs twice a day at midnight and noon. Note that GitHub Actions uses UTC time.

Is the cron expression 0 0,12 * * * valid for Kubernetes CronJobs?

Yes. Set the schedule field in your CronJob spec to "0 0,12 * * *". Kubernetes CronJobs use standard 5-field cron syntax and run in UTC by default unless you configure a timeZone field.