From d74e33cb54bac8a63887b758ea0e3692ea41615a Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Tue, 23 Jul 2024 11:52:07 -0700 Subject: [PATCH] Add config for Dependabot updates (#138) --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..2e5c5693d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/.github/workflows" + schedule: + interval: "daily"