From 82fc5255f73dcea5795fe245eaccaca363c4d1e4 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Mon, 24 Apr 2023 14:34:34 +0200 Subject: [PATCH] ci: add dependabot config for GitHub Actions Enable dependabot for the "main" branch, letting it scan for outdated GitHub Actions used in workflows on a weekly base. --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..13e4e05 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + target-branch: "main" + commit-message: + prefix: "ci"