From 9a19807d432883c0722c467ad0e727e08cab02f1 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 20 Jan 2024 10:41:36 +0100 Subject: [PATCH] Keep GitHub Actions up to date with GitHub's Dependabot https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot --- .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 00000000000..a82dd10d01f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# Keep GitHub Actions up to date with GitHub's 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