From 3b21952a1e2827d8d57a986e42779d98acc633c2 Mon Sep 17 00:00:00 2001 From: leroy0715 <40634737+leroy0715@users.noreply.github.com> Date: Sat, 31 Jan 2026 15:11:18 +0100 Subject: [PATCH] Create dependabot.yml Added a Dependabot configuration to automatically check for updates in GitHub Actions and npm dependencies on a weekly basis, helping keep the project dependencies up to date with minimal manual effort. --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..3deee26f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly"