Skip to content

Commit 3526809

Browse files
authored
.Net 9 and vulns (#11)
* .NET 9 and package upgrades for Unit tests * Use new workflows
1 parent 76c0e57 commit 3526809

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/publish-pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
permissions:
1010
contents: read
1111
packages: write
12-
uses: NetChris/workflows/.github/workflows/pre-release-dotnet-build-test-pack-push-default.yml@6753ed25deacfc53e292f92ba38bee45012a4279
12+
uses: NetChris/workflows/.github/workflows/pre-release-dotnet-build-test-pack-push-default.yml@v0.0
1313
secrets: inherit

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
permissions:
1010
contents: read
1111
packages: write
12-
uses: NetChris/workflows/.github/workflows/release-dotnet-build-test-pack-push-default.yml@6753ed25deacfc53e292f92ba38bee45012a4279
12+
uses: NetChris/workflows/.github/workflows/release-dotnet-build-test-pack-push-default.yml@v0.0
1313
secrets: inherit

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
permissions:
88
contents: read
99
packages: write
10-
uses: NetChris/workflows/.github/workflows/push-dotnet-build-test-pack-push-default.yml@6753ed25deacfc53e292f92ba38bee45012a4279
10+
uses: NetChris/workflows/.github/workflows/push-dotnet-build-test-pack-push-default.yml@v0.0

NetChris.Core.UnitTests/NetChris.Core.UnitTests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66

77
<LangVersion>10.0</LangVersion>
@@ -18,14 +18,14 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="FluentAssertions" Version="6.2.*" />
22-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.*" />
23-
<PackageReference Include="xunit" Version="2.4.*" />
24-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.*">
21+
<PackageReference Include="FluentAssertions" Version="6.12.2" />
22+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
23+
<PackageReference Include="xunit" Version="2.9.2" />
24+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
<PrivateAssets>all</PrivateAssets>
2727
</PackageReference>
28-
<PackageReference Include="coverlet.collector" Version="3.1.*">
28+
<PackageReference Include="coverlet.collector" Version="6.0.2">
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
<PrivateAssets>all</PrivateAssets>
3131
</PackageReference>

0 commit comments

Comments
 (0)