@@ -23,15 +23,15 @@ jobs:
2323
2424 steps :
2525 - name : Checkout
26- uses : actions/checkout@v4
26+ uses : actions/checkout@v6
2727
2828 - name : Setup .NET (from global.json)
29- uses : actions/setup-dotnet@v4
29+ uses : actions/setup-dotnet@v5
3030 with :
3131 global-json-file : global.json
3232
3333 - name : Cache NuGet packages
34- uses : actions/cache@v4
34+ uses : actions/cache@v5
3535 with :
3636 path : ~/.nuget/packages
3737 key : ${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props', '**/*.csproj') }}
@@ -52,15 +52,15 @@ jobs:
5252
5353 - name : Upload test results
5454 if : always()
55- uses : actions/upload-artifact@v4
55+ uses : actions/upload-artifact@v7
5656 with :
5757 name : test-results
5858 path : ./TestResults/**/*.trx
5959 if-no-files-found : warn
6060
6161 - name : Upload coverage
6262 if : always()
63- uses : actions/upload-artifact@v4
63+ uses : actions/upload-artifact@v7
6464 with :
6565 name : coverage
6666 path : ./TestResults/**/coverage.cobertura.xml
@@ -73,15 +73,15 @@ jobs:
7373
7474 steps :
7575 - name : Checkout
76- uses : actions/checkout@v4
76+ uses : actions/checkout@v6
7777
7878 - name : Setup .NET (from global.json)
79- uses : actions/setup-dotnet@v4
79+ uses : actions/setup-dotnet@v5
8080 with :
8181 global-json-file : global.json
8282
8383 - name : Initialize CodeQL
84- uses : github/codeql-action/init@v3
84+ uses : github/codeql-action/init@v4
8585 with :
8686 languages : csharp
8787 build-mode : manual
9292 dotnet build Mouse2Joy.sln -c Release --no-restore
9393
9494 - name : Perform CodeQL analysis
95- uses : github/codeql-action/analyze@v3
95+ uses : github/codeql-action/analyze@v4
9696 with :
9797 category : " /language:csharp"
0 commit comments