From abb4350316ae6c12e685edde679eda8d796ed6cc Mon Sep 17 00:00:00 2001 From: Ben Kochie Date: Thu, 12 Jun 2025 08:36:31 +0200 Subject: [PATCH] chore: enable dependabot (#256) Enable dependabot to auto-update dependencies. * Update montly to avoid too much PR noise. * Enable updates for Go modules. * Enable updates for GitHub Actions. * Enable updates for NPM in /ui. Signed-off-by: SuperQ --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cc36cf7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: gomod + directory: / + schedule: + interval: monthly + open-pull-requests-limit: 10 + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + open-pull-requests-limit: 10 + - package-ecosystem: npm + directory: /ui + open-pull-requests-limit: 10 + schedule: + interval: monthly