From 709855dc3dfc9af86684daa170f86edee6f2d6bf Mon Sep 17 00:00:00 2001 From: SuperQ Date: Wed, 12 Mar 2025 16:47:08 +0100 Subject: [PATCH] chore: Enable dependabot 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