From e21275d8e5ebf9220a4aa09f0d2bb3c38f2e9ed9 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 16 Aug 2024 14:48:35 +0100 Subject: [PATCH] ci: add dependabot.yml It's a scheduled action, which checks if any of the actions used are out of date. If so, it will open a PR with a summary of the changes in the new version. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/76 Signed-off-by: Lucas De Marchi --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6f114e95 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +# 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/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "ci" + groups: + all-actions: + patterns: + - "*" -- 2.47.3