From 4dc6157c798a6edff43394cda6168643343166ad Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Fri, 26 Dec 2025 20:44:03 +0100 Subject: [PATCH] Add Dependabot config for GitHub Actions updates Introduces a .github/dependabot.yml file to enable automated quarterly updates for GitHub Actions workflows, grouping all updates into a single pull request. --- .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 0000000..6c94893 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# https://docs.github.com/code-security/dependabot/working-with-dependabot/dependabot-options-reference +version: 2 + +updates: + - package-ecosystem: "github-actions" # Only update GitHub Actions used in workflows + directory: "/" + schedule: + interval: "quarterly" + groups: + github-actions-all: # include all actions in a single PR + patterns: + - "*"