From 83826d2b5f2c76a2defaac3e2f76938a0c4d09e0 Mon Sep 17 00:00:00 2001 From: Marko Bevc Date: Mon, 23 Mar 2026 16:12:58 +0000 Subject: [PATCH] chore: Configure Dependabot for GitHub Actions Added configuration for GitHub Actions updates. --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cff5550 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# 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" + - "github-actions"