From 8add8fefbff61ff6d659767db77dd5918baf8ede Mon Sep 17 00:00:00 2001 From: William Godbe Date: Mon, 13 Jul 2026 13:00:27 -0700 Subject: [PATCH 1/2] Add Dependabot config for monthly NuGet updates Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: c6695e66-ef29-4591-8ca6-fc494164b1ca --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..5f5a19fa4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "monthly" + groups: + nuget: + patterns: + - "*" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] From ff9f1bcdb27d62e5a13a8109b2263d6cc66c05af Mon Sep 17 00:00:00 2001 From: William Godbe Date: Mon, 13 Jul 2026 13:21:13 -0700 Subject: [PATCH 2/2] Use dotnet-public feed for NuGet updates Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: c6695e66-ef29-4591-8ca6-fc494164b1ca --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5f5a19fa4..a55bf4275 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,13 @@ version: 2 +registries: + dotnet-public: + type: nuget-feed + url: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json updates: - package-ecosystem: "nuget" directory: "/" + registries: + - dotnet-public schedule: interval: "monthly" groups: