From 769db0096fcb5fbccb634d763093db5036f4162b Mon Sep 17 00:00:00 2001 From: Thomas Niederberger <781000+Niederb@users.noreply.github.com> Date: Mon, 3 Aug 2020 13:33:36 +0200 Subject: [PATCH] Fix invalid cron attribute 0 is not valid for the day of the month. Change it to run every Sunday instead --- .github/workflows/audit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 28b5a01..9ecf61c 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -2,7 +2,7 @@ name: Security audit on: schedule: - - cron: '0 0 0 * *' + - cron: '0 0 * * 0' push: paths: - '**/Cargo.toml'