Skip to content

Commit

Permalink
[FEATURE] Configure Dependabot to also update dev dependencies (#1295)
Browse files Browse the repository at this point in the history
If we want to have fixed versions of our development dependencies,
manually updating them will be quite a hassle. Let's automate this
instead using Dependabot.
  • Loading branch information
oliverklee authored Sep 5, 2024
1 parent c9079e1 commit be4610e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,11 @@ updates:
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
allow:
- dependency-type: "development"
versioning-strategy: "increase"

0 comments on commit be4610e

Please sign in to comment.