From 44d1cbdb0cacd02743e924f255e8e338408aeaea Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Mon, 13 Oct 2025 16:47:46 +0100 Subject: [PATCH 1/2] Configure Dependabot for NuGet updates Added NuGet package ecosystem configuration for Dependabot. --- .github/dependabot.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 67534058..f58f3018 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,14 @@ +# language: yaml version: 2 updates: - - package-ecosystem: "github-actions" # search for actions - there are other options available - directory: "/" # search in .github/workflows under root `/` + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: "weekly" # check for action update every week + interval: "weekly" + + - package-ecosystem: "nuget" + directory: "/" # change to "/src/YourProject" if .csproj files are in subfolders + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + # optional: target-branch: "master" From e45ac6bfa9a66f11557bb9e2073f9645dcbf4ed7 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Mon, 13 Oct 2025 16:48:55 +0100 Subject: [PATCH 2/2] Update .github/dependabot.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f58f3018..35484218 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,4 +1,3 @@ -# language: yaml version: 2 updates: - package-ecosystem: "github-actions"