7575 run : dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --results-directory test-results/${{ matrix.configuration }}
7676
7777 - name : Upload Test Logs
78- uses : actions/upload-artifact@v6
78+ uses : actions/upload-artifact@v7
7979 if : success() || failure()
8080 with :
8181 name : test-results-${{ matrix.configuration }}
@@ -133,23 +133,23 @@ jobs:
133133 # https://github.com/actions/upload-artifact
134134 - name : Upload VSIX (VS 2019) release build artifacts
135135 if : matrix.configuration == 'release'
136- uses : actions/upload-artifact@v6
136+ uses : actions/upload-artifact@v7
137137 with :
138138 name : ILSpy VS Addin for VS 2017-2019 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
139139 path : ILSpy.AddIn\bin\${{ matrix.configuration }}\net472\*.vsix
140140 if-no-files-found : error
141141
142142 - name : Upload VSIX (VS 2022) release build artifacts
143143 if : matrix.configuration == 'release'
144- uses : actions/upload-artifact@v6
144+ uses : actions/upload-artifact@v7
145145 with :
146146 name : ILSpy VS Addin for VS 2022 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
147147 path : ILSpy.AddIn.VS2022\bin\${{ matrix.configuration }}\net472\*.vsix
148148 if-no-files-found : error
149149
150150 - name : Upload Decompiler NuGet release build artifacts
151151 if : matrix.configuration == 'release'
152- uses : actions/upload-artifact@v6
152+ uses : actions/upload-artifact@v7
153153 with :
154154 name : ICSharpCode.Decompiler NuGet Package (${{ matrix.configuration }})
155155 path : ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg
@@ -162,7 +162,7 @@ jobs:
162162
163163 - name : Upload ILSpyX NuGet release build artifacts
164164 if : matrix.configuration == 'release'
165- uses : actions/upload-artifact@v6
165+ uses : actions/upload-artifact@v7
166166 with :
167167 name : ICSharpCode.ILSpyX NuGet Package (${{ matrix.configuration }})
168168 path : ICSharpCode.ILSpyX\bin\Release\ICSharpCode.ILSpyX*.nupkg
@@ -175,7 +175,7 @@ jobs:
175175
176176 - name : Upload BamlDecompiler NuGet release build artifacts
177177 if : matrix.configuration == 'release'
178- uses : actions/upload-artifact@v6
178+ uses : actions/upload-artifact@v7
179179 with :
180180 name : ICSharpCode.BamlDecompiler NuGet Package (${{ matrix.configuration }})
181181 path : ICSharpCode.BamlDecompiler\bin\Release\ICSharpCode.BamlDecompiler*.nupkg
@@ -187,47 +187,47 @@ jobs:
187187 dotnet nuget push "ICSharpCode.BamlDecompiler\bin\Release\ICSharpCode.BamlDecompiler*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}
188188
189189 - name : Upload zip binaries build artifacts
190- uses : actions/upload-artifact@v6
190+ uses : actions/upload-artifact@v7
191191 with :
192192 name : ILSpy ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
193193 path : ${{ env.StagingDirectory }}\ILSpy_binaries.zip
194194 if-no-files-found : error
195195
196196 - name : Upload x64 self-contained zip (Release-only)
197197 if : matrix.configuration == 'release'
198- uses : actions/upload-artifact@v6
198+ uses : actions/upload-artifact@v7
199199 with :
200200 name : ILSpy self-contained x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
201201 path : ${{ env.StagingDirectory }}\ILSpy_selfcontained_x64.zip
202202 if-no-files-found : error
203203
204204 - name : Upload arm64 framework-dependent zip (Release-only)
205205 if : matrix.configuration == 'release'
206- uses : actions/upload-artifact@v6
206+ uses : actions/upload-artifact@v7
207207 with :
208208 name : ILSpy arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
209209 path : ${{ env.StagingDirectory }}\ILSpy_binaries_arm64.zip
210210 if-no-files-found : error
211211
212212 - name : Upload x64 installer artifact
213213 if : matrix.configuration == 'release'
214- uses : actions/upload-artifact@v6
214+ uses : actions/upload-artifact@v7
215215 with :
216216 name : ILSpy Installer x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
217217 path : ILSpy.Installer\wix\*-x64.msi
218218 if-no-files-found : error
219219
220220 - name : Upload arm64 installer artifact
221221 if : matrix.configuration == 'release'
222- uses : actions/upload-artifact@v6
222+ uses : actions/upload-artifact@v7
223223 with :
224224 name : ILSpy Installer arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
225225 path : ILSpy.Installer\wix\*-arm64.msi
226226 if-no-files-found : error
227227
228228 - name : Upload ilspycmd release build artifacts
229229 if : matrix.configuration == 'release'
230- uses : actions/upload-artifact@v6
230+ uses : actions/upload-artifact@v7
231231 with :
232232 name : ilspycmd dotnet tool (${{ matrix.configuration }})
233233 path : ICSharpCode.ILSpyCmd\bin\Release\ilspycmd*.nupkg
0 commit comments