84
84
- name : Pack
85
85
run : dotnet pack --no-build -c Release /p:PackageOutputPath=${{env.BUILD_ARTIFACT_PATH}}
86
86
- name : Publish artifacts
87
- uses : actions/upload-artifact@v3
87
+ uses : actions/upload-artifact@v4
88
88
with :
89
89
name : ${{matrix.os}}
90
90
path : ${{env.BUILD_ARTIFACT_PATH}}
97
97
- name : Checkout
98
98
uses : actions/checkout@v4
99
99
- name : Download coverage reports
100
- uses : actions/download-artifact@v3
100
+ uses : actions/download-artifact@v4
101
101
- name : Install ReportGenerator tool
102
102
run : dotnet tool install -g dotnet-reportgenerator-globaltool
103
103
- name : Prepare coverage reports
@@ -108,7 +108,7 @@ jobs:
108
108
file : Cobertura.xml
109
109
fail_ci_if_error : false
110
110
- name : Save combined coverage report as artifact
111
- uses : actions/upload-artifact@v3
111
+ uses : actions/upload-artifact@v4
112
112
with :
113
113
name : coverage-report
114
114
path : Cobertura.xml
@@ -125,7 +125,7 @@ jobs:
125
125
runs-on : ubuntu-latest
126
126
steps :
127
127
- name : ' Download build'
128
- uses : actions/download-artifact@v3
128
+ uses : actions/download-artifact@v4
129
129
with :
130
130
name : ' ubuntu-latest'
131
131
- name : ' Add NuGet source'
@@ -143,7 +143,7 @@ jobs:
143
143
runs-on : ubuntu-latest
144
144
steps :
145
145
- name : ' Download build'
146
- uses : actions/download-artifact@v3
146
+ uses : actions/download-artifact@v4
147
147
with :
148
148
name : ' ubuntu-latest'
149
149
- name : ' Upload NuGet package'
0 commit comments