From 4d4f5ea6181819565ee0ea26bd0fd5dd45ff964c Mon Sep 17 00:00:00 2001 From: AmirMS <104940545+AmelBawa-msft@users.noreply.github.com> Date: Thu, 13 Aug 2026 15:33:04 -0700 Subject: [PATCH] Add Dependabot configuration for dependency updates Enables Dependabot version updates so third-party dependencies are inventoried and patched via reviewable pull requests. Covers the directories that declare dependencies today: - github-actions (/) .github/workflows - nuget (/src/future/cmdpal/QuickWingetSetup) Directory.Packages.props - nuget (/src/tests/winui) hello.csproj - cargo (/src/tests/rust) Cargo.toml Updates are grouped per ecosystem to keep each refresh to a single PR. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 62 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f701f24 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,62 @@ +# Dependabot keeps this repository's third-party dependencies inventoried and +# patched. Updates arrive as pull requests and go through the same review and +# CI gates as any other change. +# +# Only directories that actually declare third-party dependencies are listed. +# Adding a project with its own manifest means adding an entry here. +# +# Updates are grouped per ecosystem so a refresh lands as one reviewable pull +# request instead of one per package. +version: 2 + +updates: + # Actions used by the workflows in .github/workflows. Keeps the pinned + # commit SHAs current and surfaces the workflows still on floating tags. + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + groups: + github-actions: + patterns: + - "*" + + # Command Palette extension. NuGet versions are managed centrally in + # Directory.Packages.props. + - package-ecosystem: "nuget" + directory: "/src/future/cmdpal/QuickWingetSetup" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + groups: + quickwingetsetup-nuget: + patterns: + - "*" + + # WinUI hello-world probe, which pins its package version inline. + - package-ecosystem: "nuget" + directory: "/src/tests/winui" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + groups: + winui-probe-nuget: + patterns: + - "*" + + # Rust hello-world probe. Dependency-free today; listed so that crates added + # by a future Rust flow are covered from their first commit. + - package-ecosystem: "cargo" + directory: "/src/tests/rust" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + groups: + rust-probe-cargo: + patterns: + - "*"