1
0

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

12345678910111213141516171819202122232425
  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. * [Keeping your software supply chain secure with Dependabot](https://docs.github.com/en/code-security/dependabot)
  6. * [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)
  7. * [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)
  8. --- /dev/null
  9. +++ b/.github/dependabot.yml
  10. @@ -0,0 +1,13 @@
  11. +# Keep GitHub Actions up to date with GitHub's Dependabot...
  12. +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
  13. +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
  14. +version: 2
  15. +updates:
  16. + - package-ecosystem: github-actions
  17. + directory: /
  18. + groups:
  19. + github-actions:
  20. + patterns:
  21. + - "*" # Group all Actions updates into a single larger pull request
  22. + schedule:
  23. + interval: weekly