Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .NET 9 dependabot updates #7497

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/dependabot.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#! to the list of TFMs that the major version uses for build and test.
#@ def getTfms():
#@ return {
#@ "9": [ "net9.0", "net8.0", "net7.0", "net6.0" ],
#@ "8": [ "net8.0", "net7.0", "net6.0" ],
#@ "6": [ "net6.0", "netcoreapp3.1" ]
#@ }
Expand All @@ -18,6 +19,7 @@
#@ def getBranches():
#@ return [
#@ struct.encode({"name": "main", "majorVersion": "8"}),
#@ struct.encode({"name": "feature/9.x", "majorVersion": "9"}),
#@ struct.encode({"name": "release/8.0", "majorVersion": "8"}),
#@ struct.encode({"name": "release/6.x", "majorVersion": "6"}),
#@ ]
Expand Down
97 changes: 97 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,103 @@ updates:
- Microsoft.Extensions.*
- Microsoft.NETCore.DotNetHost
- System.Text.Json
- package-ecosystem: nuget
directory: /eng/dependabot/independent
schedule:
interval: daily
target-branch: feature/9.x
ignore:
- dependency-name: Microsoft.Extensions.*
update-types:
- version-update:semver-major
- dependency-name: Moq
commit-message:
prefix: '[feature/9.x] '
groups:
azure-sdk-dependencies:
patterns:
- Azure.Core
- Azure.Identity
- Azure.Storage.*
identity-dependencies:
patterns:
- Microsoft.Identity.*
- Microsoft.IdentityModel.*
- package-ecosystem: nuget
directory: /eng/dependabot/nuget.org
schedule:
interval: daily
target-branch: feature/9.x
commit-message:
prefix: '[feature/9.x] '
- package-ecosystem: nuget
directory: /eng/dependabot/net9.0
schedule:
interval: daily
target-branch: feature/9.x
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-major
commit-message:
prefix: '[feature/9.x] '
groups:
runtime-dependencies:
patterns:
- Microsoft.Extensions.*
- Microsoft.NETCore.DotNetHost
- System.Text.Json
- package-ecosystem: nuget
directory: /eng/dependabot/net8.0
schedule:
interval: daily
target-branch: feature/9.x
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-major
commit-message:
prefix: '[feature/9.x] '
groups:
runtime-dependencies:
patterns:
- Microsoft.Extensions.*
- Microsoft.NETCore.DotNetHost
- System.Text.Json
- package-ecosystem: nuget
directory: /eng/dependabot/net7.0
schedule:
interval: daily
target-branch: feature/9.x
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-major
commit-message:
prefix: '[feature/9.x] '
groups:
runtime-dependencies:
patterns:
- Microsoft.Extensions.*
- Microsoft.NETCore.DotNetHost
- System.Text.Json
- package-ecosystem: nuget
directory: /eng/dependabot/net6.0
schedule:
interval: daily
target-branch: feature/9.x
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-major
commit-message:
prefix: '[feature/9.x] '
groups:
runtime-dependencies:
patterns:
- Microsoft.Extensions.*
- Microsoft.NETCore.DotNetHost
- System.Text.Json
- package-ecosystem: nuget
directory: /eng/dependabot/independent
schedule:
Expand Down