From 7839c10085dcbe4f5c1510147141d5f35476412b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 18 Jul 2024 07:39:06 +0200 Subject: [PATCH] Keep GitHub Actions up to date with GitHub's Dependabot Keep GitHub Actions up to date with GitHub's Dependabot dependabot.yml * [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) * [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) --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff9caa9..7887a56 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,11 @@ updates: directory: "/" schedule: interval: "monthly" + - package-ecosystem: "github-actions" + directory: "/" + groups: + github-actions: + patterns: + - "*" # Group all Actions updates into a single larger pull request + schedule: + interval: "weekly"