7272 run : dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --results-directory test-results/${{ matrix.configuration }}
7373
7474 - name : Upload Test Logs
75- uses : actions/upload-artifact@v4
75+ uses : actions/upload-artifact@v5
7676 if : success() || failure()
7777 with :
7878 name : test-results-${{ matrix.configuration }}
@@ -130,23 +130,23 @@ jobs:
130130 # https://github.com/actions/upload-artifact
131131 - name : Upload VSIX (VS 2019) release build artifacts
132132 if : matrix.configuration == 'release'
133- uses : actions/upload-artifact@v4
133+ uses : actions/upload-artifact@v5
134134 with :
135135 name : ILSpy VS Addin for VS 2017-2019 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
136136 path : ILSpy.AddIn\bin\${{ matrix.configuration }}\net472\*.vsix
137137 if-no-files-found : error
138138
139139 - name : Upload VSIX (VS 2022) release build artifacts
140140 if : matrix.configuration == 'release'
141- uses : actions/upload-artifact@v4
141+ uses : actions/upload-artifact@v5
142142 with :
143143 name : ILSpy VS Addin for VS 2022 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
144144 path : ILSpy.AddIn.VS2022\bin\${{ matrix.configuration }}\net472\*.vsix
145145 if-no-files-found : error
146146
147147 - name : Upload Decompiler NuGet release build artifacts
148148 if : matrix.configuration == 'release'
149- uses : actions/upload-artifact@v4
149+ uses : actions/upload-artifact@v5
150150 with :
151151 name : ICSharpCode.Decompiler NuGet Package (${{ matrix.configuration }})
152152 path : ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg
@@ -159,7 +159,7 @@ jobs:
159159
160160 - name : Upload ILSpyX NuGet release build artifacts
161161 if : matrix.configuration == 'release'
162- uses : actions/upload-artifact@v4
162+ uses : actions/upload-artifact@v5
163163 with :
164164 name : ICSharpCode.ILSpyX NuGet Package (${{ matrix.configuration }})
165165 path : ICSharpCode.ILSpyX\bin\Release\ICSharpCode.ILSpyX*.nupkg
@@ -172,7 +172,7 @@ jobs:
172172
173173 - name : Upload BamlDecompiler NuGet release build artifacts
174174 if : matrix.configuration == 'release'
175- uses : actions/upload-artifact@v4
175+ uses : actions/upload-artifact@v5
176176 with :
177177 name : ICSharpCode.BamlDecompiler NuGet Package (${{ matrix.configuration }})
178178 path : ICSharpCode.BamlDecompiler\bin\Release\ICSharpCode.BamlDecompiler*.nupkg
@@ -184,47 +184,47 @@ jobs:
184184 dotnet nuget push "ICSharpCode.BamlDecompiler\bin\Release\ICSharpCode.BamlDecompiler*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}
185185
186186 - name : Upload zip binaries build artifacts
187- uses : actions/upload-artifact@v4
187+ uses : actions/upload-artifact@v5
188188 with :
189189 name : ILSpy ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
190190 path : ${{ env.StagingDirectory }}\ILSpy_binaries.zip
191191 if-no-files-found : error
192192
193193 - name : Upload x64 self-contained zip (Release-only)
194194 if : matrix.configuration == 'release'
195- uses : actions/upload-artifact@v4
195+ uses : actions/upload-artifact@v5
196196 with :
197197 name : ILSpy self-contained x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
198198 path : ${{ env.StagingDirectory }}\ILSpy_selfcontained_x64.zip
199199 if-no-files-found : error
200200
201201 - name : Upload arm64 framework-dependent zip (Release-only)
202202 if : matrix.configuration == 'release'
203- uses : actions/upload-artifact@v4
203+ uses : actions/upload-artifact@v5
204204 with :
205205 name : ILSpy arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
206206 path : ${{ env.StagingDirectory }}\ILSpy_binaries_arm64.zip
207207 if-no-files-found : error
208208
209209 - name : Upload x64 installer artifact
210210 if : matrix.configuration == 'release'
211- uses : actions/upload-artifact@v4
211+ uses : actions/upload-artifact@v5
212212 with :
213213 name : ILSpy Installer x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
214214 path : ILSpy.Installer\wix\*-x64.msi
215215 if-no-files-found : error
216216
217217 - name : Upload arm64 installer artifact
218218 if : matrix.configuration == 'release'
219- uses : actions/upload-artifact@v4
219+ uses : actions/upload-artifact@v5
220220 with :
221221 name : ILSpy Installer arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
222222 path : ILSpy.Installer\wix\*-arm64.msi
223223 if-no-files-found : error
224224
225225 - name : Upload ilspycmd release build artifacts
226226 if : matrix.configuration == 'release'
227- uses : actions/upload-artifact@v4
227+ uses : actions/upload-artifact@v5
228228 with :
229229 name : ilspycmd dotnet tool (${{ matrix.configuration }})
230230 path : ICSharpCode.ILSpyCmd\bin\Release\ilspycmd*.nupkg
0 commit comments