From 1d7897b7450024d605a0f6cef1c6e0ac2336cfc7 Mon Sep 17 00:00:00 2001 From: Nico <47644445+nicotsx@users.noreply.github.com> Date: Sun, 21 Dec 2025 15:13:54 +0100 Subject: [PATCH] Configure Dependabot for npm and GitHub Actions Updated Dependabot configuration to include npm and GitHub Actions with daily update schedules. --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..2379bbf0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + rebase-strategy: 'auto' + groups: + minor-patch: + update-types: + - minor + - patch + + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'daily' + rebase-strategy: 'auto'