From 6c86476c00110172a2f1129c9128f45e5ee3d33c Mon Sep 17 00:00:00 2001 From: Georgi Hristov Date: Sun, 10 May 2026 17:43:53 +0300 Subject: [PATCH] Add dependabot configuration Configure weekly NuGet and GitHub Actions dependency updates via Dependabot --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..be4625c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 + +updates: + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"