From b7c433056fda7d75b1caee0a0ca6fab035a1a118 Mon Sep 17 00:00:00 2001 From: Fleny Date: Thu, 2 Oct 2025 21:33:22 +0200 Subject: [PATCH] Change dependabot update intervals to weekly (#4480) Also add the website folder to be checked for npm updates --- .github/dependabot.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 597ca3a5f..998bc2fd5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,13 +9,17 @@ updates: directory: '/' # Check the npm registry for updates every month schedule: - interval: 'monthly' + interval: 'weekly' - package-ecosystem: 'github-actions' directory: '/' schedule: # Check for updates to GitHub Actions every month - interval: 'monthly' + interval: 'weekly' - package-ecosystem: 'npm' directory: '/docker-apps/rest-passthrough' schedule: - interval: 'monthly' + interval: 'weekly' + - package-ecosystem: 'npm' + directory: '/website' + schedule: + interval: 'weekly'