Skip to content

Commit 80cebf5

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2f792f6 commit 80cebf5

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/build-frontends.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Upload binlog
4545
if: always()
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
with:
4848
name: binlog
4949
path: '**/*.binlog'

.github/workflows/build-ilspy.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
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

.github/workflows/generate-bom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: dotnet-CycloneDX ILSpy/ILSpy.csproj --output sbom --recursive --exclude-dev --exclude-test-projects
2727

2828
- name: Upload BOM
29-
uses: actions/upload-artifact@v4
29+
uses: actions/upload-artifact@v5
3030
with:
3131
name: ILSpyBOM.xml
3232
path: sbom/bom.xml

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
publish_results: true
3737

3838
- name: "Upload artifact"
39-
uses: actions/upload-artifact@v4
39+
uses: actions/upload-artifact@v5
4040
with:
4141
name: SARIF file
4242
path: results.sarif

0 commit comments

Comments
 (0)