@@ -18,37 +18,37 @@ jobs:
1818 uses : actions/setup-dotnet@v5
1919
2020 - name : Build Unit Tests .NET
21- run : dotnet build -f net9 .0 test/Renci.SshNet.Tests/
21+ run : dotnet build -f net10 .0 test/Renci.SshNet.Tests/
2222
2323 - name : Build IntegrationTests .NET
24- run : dotnet build -f net9 .0 test/Renci.SshNet.IntegrationTests/
24+ run : dotnet build -f net10 .0 test/Renci.SshNet.IntegrationTests/
2525
2626 - name : Run Unit Tests .NET
2727 run : |
2828 dotnet test \
29- -f net9 .0 \
29+ -f net10 .0 \
3030 --no-build \
3131 --logger "console;verbosity=normal" \
3232 --logger GitHubActions \
3333 -p:CollectCoverage=true \
3434 -p:CoverletOutputFormat=cobertura \
35- -p:CoverletOutput=../../coverlet/linux_unit_test_net_9_coverage .xml \
35+ -p:CoverletOutput=../../coverlet/linux_unit_test_net_10_coverage .xml \
3636 test/Renci.SshNet.Tests/
3737
3838 - name : Run Integration Tests .NET
3939 run : |
4040 dotnet test \
41- -f net9 .0 \
41+ -f net10 .0 \
4242 --no-build \
4343 --logger "console;verbosity=normal" \
4444 --logger GitHubActions \
4545 -p:CollectCoverage=true \
4646 -p:CoverletOutputFormat=cobertura \
47- -p:CoverletOutput=../../coverlet/linux_integration_test_net_9_coverage .xml \
47+ -p:CoverletOutput=../../coverlet/linux_integration_test_net_10_coverage .xml \
4848 test/Renci.SshNet.IntegrationTests/
4949
5050 - name : Archive Coverlet Results
51- uses : actions/upload-artifact@v4
51+ uses : actions/upload-artifact@v5
5252 with :
5353 name : Coverlet Results Linux
5454 path : coverlet
@@ -74,21 +74,21 @@ jobs:
7474 run : dotnet pack
7575
7676 - name : Archive NuGet Package
77- uses : actions/upload-artifact@v4
77+ uses : actions/upload-artifact@v5
7878 with :
7979 name : NuGet Package
8080 path : src/Renci.SshNet/bin/Release/*.*nupkg
8181
8282 - name : Run Unit Tests .NET
8383 run : |
8484 dotnet test `
85- -f net9 .0 `
85+ -f net10 .0 `
8686 --no-build `
8787 --logger "console;verbosity=normal" `
8888 --logger GitHubActions `
8989 -p:CollectCoverage=true `
9090 -p:CoverletOutputFormat=cobertura `
91- -p:CoverletOutput=../../coverlet/windows_unit_test_net_9_coverage .xml `
91+ -p:CoverletOutput=../../coverlet/windows_unit_test_net_10_coverage .xml `
9292 test/Renci.SshNet.Tests/
9393
9494 - name : Run Unit Tests .NET Framework
@@ -140,7 +140,7 @@ jobs:
140140 test\Renci.SshNet.IntegrationTests\
141141
142142 - name : Archive Coverlet Results
143- uses : actions/upload-artifact@v4
143+ uses : actions/upload-artifact@v5
144144 with :
145145 name : Coverlet Results Windows .NET Framework
146146 path : coverlet
@@ -173,7 +173,7 @@ jobs:
173173 - name : Run Integration Tests .NET
174174 run :
175175 dotnet test `
176- -f net9 .0 `
176+ -f net10 .0 `
177177 --logger "console;verbosity=normal" `
178178 --logger GitHubActions `
179179 -p:CollectCoverage=true `
@@ -182,7 +182,7 @@ jobs:
182182 test\Renci.SshNet.IntegrationTests\
183183
184184 - name : Archive Coverlet Results
185- uses : actions/upload-artifact@v4
185+ uses : actions/upload-artifact@v5
186186 with :
187187 name : Coverlet Results Windows .NET
188188 path : coverlet
@@ -200,7 +200,7 @@ jobs:
200200 - Windows-Integration-Tests-Net
201201 steps :
202202 - name : Download NuGet Package
203- uses : actions/download-artifact@v5
203+ uses : actions/download-artifact@v6
204204 with :
205205 name : NuGet Package
206206
@@ -229,7 +229,7 @@ jobs:
229229 - Windows-Integration-Tests-Net
230230 steps :
231231 - name : Download NuGet Package
232- uses : actions/download-artifact@v5
232+ uses : actions/download-artifact@v6
233233 with :
234234 name : NuGet Package
235235
0 commit comments