@@ -29,11 +29,11 @@ jobs:
29
29
STRYKER_DASHBOARD_API_KEY : ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
30
30
steps :
31
31
- name : Checkout git repository
32
- uses : actions/checkout@v2
32
+ uses : actions/checkout@v3
33
33
with :
34
34
fetch-depth : 0
35
35
- name : Install .NET SDK
36
- uses : actions/setup-dotnet@v1
36
+ uses : actions/setup-dotnet@v3
37
37
- name : Retrieve cached NuGet packages
38
38
uses : actions/cache@v3
39
39
with :
@@ -49,13 +49,13 @@ jobs:
49
49
run : dotnet test --no-build --logger "html;LogFileName=../../TestResults-${{ runner.os }}.html" --logger "trx;LogFileName=../../TestResults-${{ runner.os }}.trx" --logger GitHubActions
50
50
id : dotnet-test
51
51
- name : Upload received files from failing tests
52
- uses : actions/upload-artifact@v2
52
+ uses : actions/upload-artifact@v3
53
53
if : failure()
54
54
with :
55
55
name : Received-${{ runner.os }}
56
56
path : " **/*.received.*"
57
57
- name : Upload test results
58
- uses : actions/upload-artifact@v2
58
+ uses : actions/upload-artifact@v3
59
59
if : always()
60
60
with :
61
61
name : TestResults-${{ runner.os }}
89
89
id : dotnet-pack
90
90
- name : Upload NuGet package artifact
91
91
if : matrix.os == 'ubuntu-latest'
92
- uses : actions/upload-artifact@v2
92
+ uses : actions/upload-artifact@v3
93
93
with :
94
94
name : ${{ steps.dotnet-pack.outputs.nupkg-filename }}
95
95
path : ${{ steps.dotnet-pack.outputs.nupkg-filename }}
0 commit comments