fix: Use cron syntax for schedule per Renovate docs
Some checks failed
Code Quality & Security Scan / TFLint (push) Successful in 22s
Code Quality & Security Scan / Terraform Destroy (push) Has been skipped
Code Quality & Security Scan / Tfsec Security Scan (push) Successful in 29s
Code Quality & Security Scan / Checkov Security Scan (push) Successful in 45s
Code Quality & Security Scan / Terraform Validate (push) Failing after 33s
Code Quality & Security Scan / SonarQube Scan (push) Has been skipped
Code Quality & Security Scan / Terraform Plan (push) Has been skipped
Code Quality & Security Scan / Terraform Apply (push) Has been skipped

This commit is contained in:
Patrick de Ruiter 2025-11-29 12:12:15 +01:00
parent 9cee473d1e
commit b673dbb0c9
Signed by: pderuiter
GPG Key ID: 5EBA7F21CF583321

View File

@ -27,7 +27,8 @@ module.exports = {
// Schedule configuration - only run during specified time window // Schedule configuration - only run during specified time window
// This reduces resource usage by limiting when Renovate checks for updates // This reduces resource usage by limiting when Renovate checks for updates
schedule: ['after 2am and before 4am'], // Cron format: minute hour day-of-month month day-of-week
schedule: ['* 2-3 * * *'], // 2:00 AM to 3:59 AM
timezone: 'Europe/Amsterdam', timezone: 'Europe/Amsterdam',
// Regex managers for custom version detection // Regex managers for custom version detection