Skip to content
Merged
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,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 +11 to +12
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. According to GitHub's Dependabot documentation, when using interval: "monthly", you should specify day and time fields instead. Dependabot does not support arbitrary cron expressions. The valid configuration would be:

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

Note that this would run on the first day of the month. If you need to run on the first Sunday specifically, Dependabot's schedule configuration does not support that level of granularity - it only supports "first day of month" for monthly updates.

This issue also appears in the following locations of the same file:

  • line 17

See below for a potential fix:

      interval: "monthly"
      day: "2"
      time: "05:00" # Second day of each month at 05:00 UTC

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

Copilot uses AI. Check for mistakes.
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 comment states "Second day of each month" but the PR description states the intent is to run on "the first Sunday of the month". There is a mismatch between the stated intent and the implementation. Additionally, the cron expression 0 5 2 * * would mean the second day of the month, not the first Sunday.

This issue also appears in the following locations of the same file:

  • line 18

See below for a potential fix:

      cronjob: "0 5 1-7 * 0" # First Sunday of each month at 05:00 UTC

  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "cron"
      cronjob: "0 5 1-7 * 0" # First Sunday of each month 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