From 6c78f524bb5d0f9767093f5176cda818bdddd409 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 19 Jan 2024 14:46:37 +0100 Subject: [PATCH] Keep GitHub 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 Like #2211 but automated. --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..4bd67e4ce --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# Keep GitHub 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 +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + groups: + GitHub_Actions: + patterns: + - "*" # Group all Actions updates into a single larger pull request + schedule: + interval: weekly