From 9a0cd00eb394eaecd5a3f5f7c9279f1250db461f Mon Sep 17 00:00:00 2001 From: Marko Bevc Date: Thu, 26 Mar 2026 10:31:32 +0000 Subject: [PATCH] chore: Add Dependabot configuration for updates Configure Dependabot for GitHub Actions updates. --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..efdb179 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # GitHub Actions + - package-ecosystem: "github-actions" + open-pull-requests-limit: 10 + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" + day: "tuesday" + time: "11:00" + groups: + github-actions-dependencies: + patterns: + - "*" + update-types: + - "minor" + - "patch" + labels: + - "dependencies"