From ed6559efa6081b3cb753db3a198d9dc2e66343f2 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Sat, 21 Dec 2024 11:19:33 -0800 Subject: [PATCH] Extend ecosystems in Dependabot workflow --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ea7c7d78..925d0656 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,3 +12,15 @@ updates: # Check the for updates once a week schedule: interval: "weekly" + # Enable version updates for Go + - package-ecosystem: "gomod" + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly" + # Enable version updates for npm + - package-ecosystem: "npm" + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly"