From c7a566231e9c16e8402cf4d7d16d715ca161256f Mon Sep 17 00:00:00 2001 From: Luca Foppiano Date: Thu, 23 Jul 2026 11:20:02 +0200 Subject: [PATCH] ci: add Dependabot config for GitHub Actions maintenance Automatically monitor the actions used in the CI workflows and open weekly update PRs when newer versions are released. --- .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..2d87e6b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + # Keep GitHub Actions used in the workflows up to date + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: + - "dependencies" + - "github-actions" + commit-message: + prefix: "ci"