Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "monthly"
interval: "cron"
cronjob: "0 5 2 * *" # Second day of each month at 05:00 UTC
Comment on lines +7 to +8
Copy link

Copilot AI Jan 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The field name cronjob is not valid for Dependabot configuration. Additionally, Dependabot doesn't support interval: "cron". For monthly schedules, use interval: "monthly" with day and time fields. To run on the first Sunday of the month at 05:00 UTC, the correct syntax would be:

interval: "monthly"
day: "sunday"
time: "05:00"

Note that this will run on the first occurrence of the specified day in the month.

See below for a potential fix:

      interval: "monthly"
      time: "05:00" # Runs monthly at 05:00 UTC

  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "monthly"
      time: "05:00" # Runs monthly at 05:00 UTC

Copilot uses AI. Check for mistakes.

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
interval: "cron"
cronjob: "0 5 2 * *" # Second day of each month at 05:00 UTC
Comment on lines +13 to +14
Copy link

Copilot AI Jan 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The field name cronjob is not valid for Dependabot configuration. Additionally, Dependabot doesn't support interval: "cron". For monthly schedules, use interval: "monthly" with day and time fields. To run on the first Sunday of the month at 05:00 UTC, the correct syntax would be:

interval: "monthly"
day: "sunday"
time: "05:00"

Note that this will run on the first occurrence of the specified day in the month.

See below for a potential fix:

      interval: "monthly"
      day: "sunday"
      time: "05:00" # First Sunday of each month at 05:00 UTC
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "monthly"
      day: "sunday"
      time: "05:00" # First Sunday of each month at 05:00 UTC

Copilot uses AI. Check for mistakes.