From 55af73e878bf8b8304dc8ccd314fa90a1b7b8af5 Mon Sep 17 00:00:00 2001 From: Dominik Koch Date: Mon, 30 Dec 2024 20:04:32 +0100 Subject: [PATCH] fix(dependabot): monthly dependencie updates (#4076) Skillz talked about wanting the dependabot prs to only be made every month so this pr changes it to monthly! --- .github/dependabot.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 41075af8c..597ca3a5f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,15 +7,15 @@ updates: - package-ecosystem: 'npm' # Look for `package.json` and `lock` files in the `root` directory directory: '/' - # Check the npm registry for updates every day (weekdays) + # Check the npm registry for updates every month schedule: - interval: 'daily' + interval: 'monthly' - package-ecosystem: 'github-actions' directory: '/' schedule: - # Check for updates to GitHub Actions every week - interval: 'daily' + # Check for updates to GitHub Actions every month + interval: 'monthly' - package-ecosystem: 'npm' directory: '/docker-apps/rest-passthrough' schedule: - interval: 'daily' + interval: 'monthly'