Skip to content

Commit

Permalink
Downgrade "Microsoft.*" and "System.*" packages to v8 (#805)
Browse files Browse the repository at this point in the history
* Downgrade "Microsoft.*" and "System.*" packages to v8

* Tweak
  • Loading branch information
louis-z authored Dec 2, 2024
1 parent 9547179 commit 4283ef2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
31 changes: 17 additions & 14 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,40 @@

version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
rebase-strategy: auto
open-pull-requests-limit: 20
groups:
github-actions:
patterns:
- '*'
- "*"

- package-ecosystem: 'nuget'
directory: '/'
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: weekly
ignore:
- dependency-name: "Microsoft.Bcl.AsyncInterfaces"
- dependency-name: "System.Text.Json"
rebase-strategy: auto
open-pull-requests-limit: 20
groups:
code-analyzers:
patterns:
- '*Analyzer*'
- "*Analyzer*"
ms-dependencies:
patterns:
- 'Microsoft.*'
- 'System.*'
- "Microsoft.*"
- "System.*"
exclude-patterns:
- 'Microsoft.Playwright'
- "Microsoft.Playwright"
test-dependencies:
patterns:
- 'coverlet.collector'
- 'FluentAssertions'
- 'Microsoft.Playwright'
- 'NSubstitute'
- '*NUnit*'
- "coverlet.collector"
- "FluentAssertions"
- "Microsoft.Playwright"
- "NSubstitute"
- "*NUnit*"
2 changes: 1 addition & 1 deletion NGitLab.Tests/NGitLab.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="Polly" Version="8.5.0" />
<PackageReference Include="System.Text.Json" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
4 changes: 2 additions & 2 deletions NGitLab/NGitLab.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
</Project>

0 comments on commit 4283ef2

Please sign in to comment.