From 1063eaa73ab09c09e48c5b948960894f5bc9d787 Mon Sep 17 00:00:00 2001 From: Blazej Kucman Date: Fri, 26 Apr 2024 09:37:56 +0200 Subject: [PATCH] Add dependabot action for gh actions Add dependabot config to check updates of actions used in the repository. This option will cause dependabot to automatically issue PRs with actions updates. Signed-off-by: Blazej Kucman --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..90963715 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file