From 786dc30aad30d11438e3df79c4aa168a6789fb6a Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Mon, 19 Aug 2024 12:24:07 -0400 Subject: [PATCH] (chore) Add dependabot config to keep tooling up to date. (#1346) Co-authored-by: Armin Ruech <7052238+arminru@users.noreply.github.com> --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..209698949 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,20 @@ +version: 2 +updates: + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + - package-ecosystem: "github-actions" + directory: ".github" + schedule: + interval: "weekly" + day: "sunday" + - package-ecosystem: "gomod" + directory: "internal/tools" + schedule: + interval: "daily" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily"