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 @@ -3,9 +3,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 +6 to +7
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 should be cron instead of cronjob for Dependabot cron schedules. Additionally, the cron expression 0 5 2 * * runs on the second day of each month at 05:00 UTC, but the PR description indicates it should run on the first Sunday of the month. Dependabot doesn't support advanced cron expressions for day-of-week scheduling. If you need to run on the first Sunday, you would need to use a different approach or accept that Dependabot's scheduling is limited to specific days or weekly intervals.

See below for a potential fix:

      cron: "0 5 2 * *" # Second day of each month at 05:00 UTC

  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "cron"
      cron: "0 5 2 * *" # Second day 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
Comment on lines +12 to +13
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 should be cron instead of cronjob for Dependabot cron schedules. Additionally, the cron expression 0 5 2 * * runs on the second day of each month at 05:00 UTC, but the PR description indicates it should run on the first Sunday of the month. Dependabot doesn't support advanced cron expressions for day-of-week scheduling. If you need to run on the first Sunday, you would need to use a different approach or accept that Dependabot's scheduling is limited to specific days or weekly intervals.

See below for a potential fix:

      cron: "0 5 2 * *" # Second day of each month at 05:00 UTC

  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "cron"
      cron: "0 5 2 * *" # Second day of each month at 05:00 UTC

Copilot uses AI. Check for mistakes.