Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: allow dependabot to upgrade more dependencies #9619

Merged
merged 1 commit into from
Dec 23, 2024
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
35 changes: 16 additions & 19 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,71 +7,68 @@ updates:
- directory: "/"
package-ecosystem: "gomod"
schedule:
interval: "daily"
# Security updates have their own PR limit, so setting this to 0 will only
# allow security updates through.
open-pull-requests-limit: 0
interval: "weekly"

Choose a reason for hiding this comment

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

low

Since the open-pull-requests-limit is being removed to allow all updates, consider adding a comment explaining this decision. This will help future maintainers understand the configuration.

Suggested change
interval: "weekly"
interval: "weekly"
# Removing open-pull-requests-limit to allow all updates


# check for updates to github actions
- directory: "/"
package-ecosystem: "github-actions"
schedule:
interval: "daily"
interval: "weekly"

- directory: "/integration/examples"
package-ecosystem: "npm"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/integration/examples"
package-ecosystem: "bundler"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/integration/examples"
package-ecosystem: "composer"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/integration/examples"
package-ecosystem: "pip"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/integration/examples"
package-ecosystem: "maven"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/integration/examples"
package-ecosystem: "gradle"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/integration/examples"
package-ecosystem: "gomod"
schedule:
interval: "daily"
interval: "weekly"

- directory: "/examples"
package-ecosystem: "npm"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/examples"
package-ecosystem: "bundler"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/examples"
package-ecosystem: "composer"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/examples"
package-ecosystem: "pip"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/examples"
package-ecosystem: "maven"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/examples"
package-ecosystem: "gradle"
schedule:
interval: "daily"
interval: "weekly"
- directory: "/examples"
package-ecosystem: "gomod"
schedule:
interval: "daily"
interval: "weekly"
Loading