Skip to content

Commit 72ed382

Browse files
committed
chore(deps): nugets updated
1 parent 96d4f1a commit 72ed382

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/dependabot.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# package ecosystems to update and where the package manifests are located.
33
# Please see the documentation for all configuration options:
44
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
56
version: 2
67
updates:
78
- package-ecosystem: "nuget"
@@ -16,12 +17,17 @@ updates:
1617
mstest-dependencies:
1718
patterns:
1819
- "MSTest*"
19-
20+
microsoft-dependencies:
21+
patterns:
22+
- "Microsoft*"
23+
system-dependencies:
24+
patterns:
25+
- "System*"
2026
- package-ecosystem: "github-actions"
2127
directory: "/"
2228
schedule:
2329
interval: "weekly"
2430
reviewers:
2531
- "BoBoBaSs84"
2632
assignees:
27-
- "BoBoBaSs84"
33+
- "BoBoBaSs84"

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
dotnet-version: '9.0.x'
2323

2424
- name: Restore
25-
run: dotnet restore
25+
run: dotnet restore --verbosity minimal
2626

2727
- name: Build
2828
run: dotnet build --no-restore --configuration release --verbosity minimal
2929

3030
- name: Test
31-
run: dotnet test --no-build --configuration release --verbosity minimal
31+
run: dotnet test --no-build --configuration release --verbosity minimal --framework net8.0

Directory.Packages.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageVersion Include="MSTest.TestAdapter" Version="3.7.1" />
7-
<PackageVersion Include="MSTest.TestFramework" Version="3.7.1" />
6+
<PackageVersion Include="MSTest.TestAdapter" Version="3.7.2" />
7+
<PackageVersion Include="MSTest.TestFramework" Version="3.7.2" />
88
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
99
<PackageVersion Include="System.ComponentModel.Annotations" Version="5.0.0" />
1010
<PackageVersion Include="coverlet.collector" Version="6.0.4" />

0 commit comments

Comments
 (0)