From 5cf8252c2b8a3fe937991fdf0c8eea45f34a168f Mon Sep 17 00:00:00 2001 From: Tomer Rosenthal Date: Thu, 4 Dec 2025 10:32:09 -0800 Subject: [PATCH 1/4] Configure Dependabot for dotnet-sdk updates --- .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 00000000..ccb6864d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "dotnet-sdk" + directory: "/" + schedule: + interval: "weekly" + day: "tuesday" + ignore: + - dependency-name: "*" + update-types: + - "version-update:semver-major" + - "version-update:semver-minor" From 50369993734af9aff3687e58d673c95d6643c79c Mon Sep 17 00:00:00 2001 From: Tomer Rosenthal Date: Thu, 4 Dec 2025 10:38:12 -0800 Subject: [PATCH 2/4] Update package ecosystem in dependabot.yml Changed package ecosystem from 'dotnet-sdk' to 'nuget' in dependabot configuration. --- .github/dependabot.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ccb6864d..995dad09 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - - package-ecosystem: "dotnet-sdk" + - package-ecosystem: "nuget" directory: "/" schedule: interval: "weekly" @@ -9,4 +9,3 @@ updates: - dependency-name: "*" update-types: - "version-update:semver-major" - - "version-update:semver-minor" From 89f10b7ba507dd837382c5c2441e0e0e1bf0cc26 Mon Sep 17 00:00:00 2001 From: Tomer Rosenthal Date: Thu, 4 Dec 2025 10:44:41 -0800 Subject: [PATCH 3/4] Add dotnet-sdk to Dependabot configuration --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 995dad09..f75f0b9a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,14 @@ updates: - dependency-name: "*" update-types: - "version-update:semver-major" + + - package-ecosystem: "dotnet-sdk" + directory: "/" + schedule: + interval: "weekly" + day: "tuesday" + ignore: + - dependency-name: "*" + update-types: + - "version-update:semver-major" + From 13df763c3f905990ab9ad865437440feb88df447 Mon Sep 17 00:00:00 2001 From: Tomer Rosenthal Date: Thu, 4 Dec 2025 10:49:38 -0800 Subject: [PATCH 4/4] Remove unnecessary blank line in dependabot.yml --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f75f0b9a..2a12a307 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,4 +19,3 @@ updates: - dependency-name: "*" update-types: - "version-update:semver-major" -