@@ -22,20 +22,20 @@ jobs:
2222
2323 steps :
2424 - name : Checkout
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v4
2626 with :
2727 fetch-depth : 0
2828
2929 - name : Install .NET Core
30- uses : actions/setup-dotnet@v3
30+ uses : actions/setup-dotnet@v4
3131 with :
32- dotnet-version : 6 .0.x
32+ dotnet-version : 8 .0.x
3333
3434 - name : Setup MSBuild.exe
35- uses : microsoft/setup-msbuild@v1.1
35+ uses : microsoft/setup-msbuild@v2
3636
3737 - name : Setup NuGet.exe for use with actions
38- uses : NuGet/setup-nuget@v1
38+ uses : NuGet/setup-nuget@v2
3939
4040 - name : Build MIDebugEngine
4141 run : |
4444 Configuration : ${{ matrix.configuration }}
4545
4646 - name : Setup VSTest.console.exe
47- uses : darenm/Setup-VSTest@v1.2
47+ uses : darenm/Setup-VSTest@v1.3
4848
4949 - name : Run VS Extension tests
5050 run : vstest.console.exe ${{ github.workspace }}\bin\${{ matrix.configuration }}\MICoreUnitTests.dll ${{ github.workspace }}\bin\${{ matrix.configuration }}\JDbgUnitTests.dll ${{ github.workspace }}\bin\${{ matrix.configuration }}\SSHDebugTests.dll ${{ github.workspace }}\bin\${{ matrix.configuration }}\MIDebugEngineUnitTests.dll
@@ -54,20 +54,20 @@ jobs:
5454
5555 steps :
5656 - name : Checkout
57- uses : actions/checkout@v3
57+ uses : actions/checkout@v4
5858 with :
5959 fetch-depth : 0
6060
6161 - name : Install .NET Core
62- uses : actions/setup-dotnet@v3
62+ uses : actions/setup-dotnet@v4
6363 with :
64- dotnet-version : 6 .0.x
64+ dotnet-version : 8 .0.x
6565
6666 - name : Setup MSBuild.exe
67- uses : microsoft/setup-msbuild@v1.1
67+ uses : microsoft/setup-msbuild@v2
6868
6969 - name : Setup NuGet.exe for use with actions
70- uses : NuGet/setup-nuget@v1
70+ uses : NuGet/setup-nuget@v2
7171
7272 - name : Build MIDebugEngine
7373 run : |
@@ -102,7 +102,7 @@ jobs:
102102 dotnet test $CppTestsPath --logger "trx;LogFileName=$ResultsPath"
103103
104104 - name : ' Upload Test Results'
105- uses : actions/upload-artifact@v3
105+ uses : actions/upload-artifact@v4
106106 if : ${{ always() }}
107107 with :
108108 name : win_msys2_x64_results
@@ -112,14 +112,14 @@ jobs:
112112 runs-on : ubuntu-latest
113113 steps :
114114 - name : Checkout
115- uses : actions/checkout@v3
115+ uses : actions/checkout@v4
116116 with :
117117 fetch-depth : 0
118118
119119 - name : Install .NET Core
120- uses : actions/setup-dotnet@v3
120+ uses : actions/setup-dotnet@v4
121121 with :
122- dotnet-version : 6 .0.x
122+ dotnet-version : 8 .0.x
123123
124124 - name : Build
125125 run : dotnet build ${{ github.workspace }}/src/MIDebugEngine-Unix.sln
@@ -143,24 +143,24 @@ jobs:
143143 ${{ github.workspace }}/eng/Scripts/CI-Test.sh
144144
145145 - name : ' Upload Test Results'
146- uses : actions/upload-artifact@v3
146+ uses : actions/upload-artifact@v4
147147 if : ${{ always() }}
148148 with :
149149 name : linux_x64_results
150150 path : ${{ github.workspace }}/bin/DebugAdapterProtocolTests/Debug/CppTests/results.trx
151151
152152 osx_build :
153- runs-on : macos-latest
153+ runs-on : macos-12
154154 steps :
155155 - name : Checkout
156- uses : actions/checkout@v3
156+ uses : actions/checkout@v4
157157 with :
158158 fetch-depth : 0
159159
160160 - name : Install .NET Core
161- uses : actions/setup-dotnet@v3
161+ uses : actions/setup-dotnet@v4
162162 with :
163- dotnet-version : 6 .0.x
163+ dotnet-version : 8 .0.x
164164
165165 - name : Build
166166 run : dotnet build ${{ github.workspace }}/src/MIDebugEngine-Unix.sln
@@ -172,8 +172,8 @@ jobs:
172172 ${{ github.workspace }}/eng/Scripts/CI-Test.sh
173173
174174 - name : ' Upload Test Results'
175- uses : actions/upload-artifact@v3
175+ uses : actions/upload-artifact@v4
176176 if : ${{ always() }}
177177 with :
178178 name : osx_x64_results
179- path : ${{ github.workspace }}/bin/DebugAdapterProtocolTests/Debug/CppTests/results.trx
179+ path : ${{ github.workspace }}/bin/DebugAdapterProtocolTests/Debug/CppTests/results.trx
0 commit comments