From 44d9e6cb809e06c8cffd76437ccc98c15a2f0730 Mon Sep 17 00:00:00 2001 From: Andrey Fedorov Date: Fri, 19 Jun 2026 13:09:34 -0400 Subject: [PATCH] Add Dependabot configuration for GitHub Actions --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..04a36484 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 + +updates: + # Keep the actions used in .github/workflows/ up to date. + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + # Bundle all action bumps into one PR per run instead of one per action. + groups: + github-actions: + patterns: + - "*" + commit-message: + prefix: "CI"