From 4678ae1cdae2d326f431b977d262007230489dd6 Mon Sep 17 00:00:00 2001 From: Mario Apra Date: Wed, 31 Jul 2024 09:47:20 +0100 Subject: [PATCH] Add dependabot configuration for weekly updates (#1988) So far, only github-actions, docker, go and cargo will be checked --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..194c6f87cd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "cargo" + directory: "/vm/rust" + schedule: + interval: "weekly"