2626# ------------------------------------------------------------------------------------------------------
2727 - name : Restore static site content -Windows
2828 if : runner.os == 'Windows'
29- uses : actions/cache@v4
29+ uses : actions/cache@v5
3030 with :
3131 path : ./**
3232 key : cache-site-windows-${{ github.run_number }}
3535
3636 - name : Restore static site content - Linux
3737 if : runner.os == 'Linux'
38- uses : actions/cache@v4
38+ uses : actions/cache@v5
3939 with :
4040 path : ./**
4141 key : cache-site-linux-${{ github.run_number }}
4444
4545 - name : Restore static site content - macOS
4646 if : runner.os == 'macOS'
47- uses : actions/cache@v4
47+ uses : actions/cache@v5
4848 with :
4949 path : ./**
5050 key : cache-site-macos-${{ github.run_number }}
5656# Install .Net core SDK 10.0.103
5757# ------------------------------------------------------------------------------------------------------
5858 - name : Setup .NET
59- uses : actions/setup-dotnet@v3
59+ uses : actions/setup-dotnet@v5
6060 with :
6161 dotnet-version : 10.0.103
6262# ------------------------------------------------------------------------------------------------------
7676# Install Nuget tool v1.0.5
7777# ------------------------------------------------------------------------------------------------------
7878 - name : Setup Nuget
79- uses : Nuget/setup-nuget@v1 .0.5
79+ uses : Nuget/setup-nuget@v2 .0.1
8080
8181# ------------------------------------------------------------------------------------------------------
8282# Restore Ginger solution NuGet packages
8989# ------------------------------------------------------------------------------------------------------
9090 - name : Add msbuild to PATH
9191 if : ${{github.workflow == 'Ginger Windows Test'}}
92- uses : microsoft/setup-msbuild@v1.0.2
92+ uses : microsoft/setup-msbuild@v2
9393
9494 - name : Build Ginger Solution
9595 if : ${{github.workflow == 'Ginger Windows Test'}}
@@ -122,6 +122,7 @@ jobs:
122122 if : success() || failure()
123123 run : dotnet test Ginger/GingerAutoPilotTest --configuration ${{ env.BUILD_CONFIGURATION }} --logger trx --results-directory D:\a\TestResults --verbosity=normal
124124
125+
125126# ------------------------------------------------------------------------------------------------------
126127# Run .Net Framework tests using powershell and publish the results
127128# ------------------------------------------------------------------------------------------------------
@@ -170,4 +171,4 @@ jobs:
170171 path : " **/*.trx" # Path to test results
171172 reporter : dotnet-trx # Format of test results
172173
173-
174+
0 commit comments