From 6d22df7649047e85c447c37b8a7f6ff2195c3c48 Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Thu, 25 Aug 2022 19:12:22 +0200 Subject: [PATCH] ci: Add Dependabot to keep GitHub actions up to date Dependabot will help you to keep you notified about new releases and help you update your workflows. Interval is set to `monthly` so it won't make too much noise. --- .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 0000000000..3fa888a512 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +--- + +version: 2 + +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + labels: + - 'type: dependencies' + - 'github-actions' -- 2.47.2