8484 - name : Pack
8585 run : dotnet pack --no-build -c Release /p:PackageOutputPath=${{env.BUILD_ARTIFACT_PATH}}
8686 - name : Publish artifacts
87- uses : actions/upload-artifact@v3
87+ uses : actions/upload-artifact@v4
8888 with :
8989 name : ${{matrix.os}}
9090 path : ${{env.BUILD_ARTIFACT_PATH}}
9797 - name : Checkout
9898 uses : actions/checkout@v4
9999 - name : Download coverage reports
100- uses : actions/download-artifact@v3
100+ uses : actions/download-artifact@v4
101101 - name : Install ReportGenerator tool
102102 run : dotnet tool install -g dotnet-reportgenerator-globaltool
103103 - name : Prepare coverage reports
@@ -108,7 +108,7 @@ jobs:
108108 file : Cobertura.xml
109109 fail_ci_if_error : false
110110 - name : Save combined coverage report as artifact
111- uses : actions/upload-artifact@v3
111+ uses : actions/upload-artifact@v4
112112 with :
113113 name : coverage-report
114114 path : Cobertura.xml
@@ -125,7 +125,7 @@ jobs:
125125 runs-on : ubuntu-latest
126126 steps :
127127 - name : ' Download build'
128- uses : actions/download-artifact@v3
128+ uses : actions/download-artifact@v4
129129 with :
130130 name : ' ubuntu-latest'
131131 - name : ' Add NuGet source'
@@ -143,7 +143,7 @@ jobs:
143143 runs-on : ubuntu-latest
144144 steps :
145145 - name : ' Download build'
146- uses : actions/download-artifact@v3
146+ uses : actions/download-artifact@v4
147147 with :
148148 name : ' ubuntu-latest'
149149 - name : ' Upload NuGet package'
0 commit comments