dependabot.yml 539 B

1234567891011121314151617181920
  1. ---
  2. version: 2
  3. updates:
  4. - package-ecosystem: "npm"
  5. directory: "/"
  6. schedule:
  7. interval: "weekly"
  8. groups:
  9. minor-npm-dependencies:
  10. # NPM: Only group minor and patch updates (we want to carefully review major updates)
  11. update-types: [minor, patch]
  12. - package-ecosystem: "github-actions"
  13. directory: "/"
  14. schedule:
  15. interval: "weekly"
  16. groups:
  17. minor-actions-dependencies:
  18. # GitHub Actions: Only group minor and patch updates (we want to carefully review major updates)
  19. update-types: [minor, patch]