@@ -15,20 +15,20 @@ jobs:
1515 steps :
1616
1717 - name : Check out code onto host
18- uses : actions/checkout@v4
18+ uses : actions/checkout@v6
1919
2020 - name : Setup .Net 6.0
21- uses : actions/setup-dotnet@v4
21+ uses : actions/setup-dotnet@v5
2222 with :
2323 dotnet-version : ' 6.0.x' # SDK Version to use.
2424
2525 - name : Setup .Net 8.0
26- uses : actions/setup-dotnet@v4
26+ uses : actions/setup-dotnet@v5
2727 with :
2828 dotnet-version : ' 8.0.x' # SDK Version to use.
2929
3030 - name : Setup .Net 9.0
31- uses : actions/setup-dotnet@v4
31+ uses : actions/setup-dotnet@v5
3232 with :
3333 dotnet-version : ' 9.0.x' # SDK Version to use.
3434
@@ -58,15 +58,15 @@ jobs:
5858 if : matrix.framework == 'net80'
5959
6060 - name : Upload dotnet test results
61- uses : actions/upload-artifact@v4
61+ uses : actions/upload-artifact@v5
6262 with :
6363 name : dotnet-results-${{ matrix.os }}-${{ matrix.framework }}
6464 path : TestResults-${{ matrix.os }}-${{ matrix.framework }}
6565 # Use always() to always run this step to publish test results when there are test failures
6666 if : ${{ always() }}
6767
6868 - name : Upload BenchmarkDotNet results
69- uses : actions/upload-artifact@v4
69+ uses : actions/upload-artifact@v5
7070 with :
7171 name : BenchmarkDotNet-${{ matrix.os }}-${{ matrix.framework }}
7272 path : BenchmarkDotNet.Artifacts
@@ -84,13 +84,13 @@ jobs:
8484 steps :
8585
8686 - name : Check out code onto host
87- uses : actions/checkout@v4
87+ uses : actions/checkout@v6
8888
8989 - name : Add msbuild to PATH
90- uses : microsoft/setup-msbuild@v1.3.1
90+ uses : microsoft/setup-msbuild@v2
9191
9292 - name : Setup .Net 8.0
93- uses : actions/setup-dotnet@v4
93+ uses : actions/setup-dotnet@v5
9494 with :
9595 dotnet-version : ' 8.0.x' # SDK Version to use.
9696
@@ -114,7 +114,7 @@ jobs:
114114 dotnet test --no-restore --configuration Release --verbosity normal --framework=${{ matrix.framework }} --logger trx --results-directory "TestResults-${{ matrix.os }}-${{ matrix.framework }}"
115115
116116 - name : Upload dotnet test results
117- uses : actions/upload-artifact@v4
117+ uses : actions/upload-artifact@v5
118118 with :
119119 name : dotnet-results-windows-latest-${{ matrix.framework }}
120120 path : TestResults-windows-latest-${{ matrix.framework }}
0 commit comments