Skip to content

Commit

Permalink
chore: allow dependabot to upgrade more dependencies (#9619)
Browse files Browse the repository at this point in the history
It had been configured to only allow security updates. Now that we've
updated all the core dependencies, let it keep things up to date.

Only have it run once a week since there will be many more updates now.
  • Loading branch information
plumpy authored Dec 23, 2024
1 parent c1834b6 commit 4a8c428
Showing 1 changed file with 16 additions and 19 deletions.
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"

# 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"

0 comments on commit 4a8c428

Please sign in to comment.