0.4.27-46-g07bd5dd.keep-github-actions-up-to-date-with-github-s-dependabot.patch 1.4 KB

1234567891011121314151617181920212223242526
  1. Subject: Keep GitHub Actions up to date with GitHub's Dependabot
  2. Origin: upstream, commit 0.4.27-46-g07bd5dd <https://github.com/ahupp/python-magic/commit/0.4.27-46-g07bd5dd>
  3. Author: Christian Clauss <cclauss@me.com>
  4. Date: Wed Sep 24 14:18:52 2025 +0200
  5. Forwarded: not-needed
  6. * [Keeping your software supply chain secure with Dependabot](https://docs.github.com/en/code-security/dependabot)
  7. * [Keeping your actions up to date with Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot)
  8. * [Configuration options for the `dependabot.yml` file - package-ecosystem](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem)
  9. --- /dev/null
  10. +++ b/.github/dependabot.yml
  11. @@ -0,0 +1,13 @@
  12. +# Keep GitHub Actions up to date with GitHub's Dependabot...
  13. +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
  14. +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
  15. +version: 2
  16. +updates:
  17. + - package-ecosystem: github-actions
  18. + directory: /
  19. + groups:
  20. + github-actions:
  21. + patterns:
  22. + - "*" # Group all Actions updates into a single larger pull request
  23. + schedule:
  24. + interval: weekly