Skip to content

Commit 5a6f9b8

Browse files
Bump actions/upload-artifact from 3 to 4 (#3146)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1370b99 commit 5a6f9b8

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/build-frontends.yml

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

3939
- name: Upload binlog
4040
if: always()
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: binlog
4444
path: '**/*.binlog'

.github/workflows/build-ilspy.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
Tests3: ILSpy.BamlDecompiler.Tests\bin\${{ matrix.configuration }}\net8.0-windows\win-x64\ILSpy.BamlDecompiler.Tests.dll
5959

6060
- name: Upload Test Logs
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
if: success() || failure()
6363
with:
6464
name: test-results-${{ matrix.configuration }}
@@ -111,23 +111,23 @@ jobs:
111111
# https://github.com/actions/upload-artifact
112112
- name: Upload VSIX (VS 2019) release build artifacts
113113
if: matrix.configuration == 'release'
114-
uses: actions/upload-artifact@v3
114+
uses: actions/upload-artifact@v4
115115
with:
116116
name: ILSpy VS Addin for VS 2017-2019 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
117117
path: ILSpy.AddIn\bin\${{ matrix.configuration }}\net472\*.vsix
118118
if-no-files-found: error
119119

120120
- name: Upload VSIX (VS 2022) release build artifacts
121121
if: matrix.configuration == 'release'
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
with:
124124
name: ILSpy VS Addin for VS 2022 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
125125
path: ILSpy.AddIn.VS2022\bin\${{ matrix.configuration }}\net472\*.vsix
126126
if-no-files-found: error
127127

128128
- name: Upload Decompiler NuGet release build artifacts
129129
if: matrix.configuration == 'release'
130-
uses: actions/upload-artifact@v3
130+
uses: actions/upload-artifact@v4
131131
with:
132132
name: ICSharpCode.Decompiler NuGet Package (${{ matrix.configuration }})
133133
path: ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg
@@ -140,7 +140,7 @@ jobs:
140140
141141
- name: Upload ILSpyX NuGet release build artifacts
142142
if: matrix.configuration == 'release'
143-
uses: actions/upload-artifact@v3
143+
uses: actions/upload-artifact@v4
144144
with:
145145
name: ICSharpCode.ILSpyX NuGet Package (${{ matrix.configuration }})
146146
path: ICSharpCode.ILSpyX\bin\Release\ICSharpCode.ILSpyX*.nupkg
@@ -152,47 +152,47 @@ jobs:
152152
dotnet nuget push "ICSharpCode.ILSpyX\bin\Release\ICSharpCode.ILSpyX*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}
153153
154154
- name: Upload zip binaries build artifacts
155-
uses: actions/upload-artifact@v3
155+
uses: actions/upload-artifact@v4
156156
with:
157157
name: ILSpy ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
158158
path: ${{ env.StagingDirectory }}\ILSpy_binaries.zip
159159
if-no-files-found: error
160160

161161
- name: Upload x64 self-contained zip (Release-only)
162162
if: matrix.configuration == 'release'
163-
uses: actions/upload-artifact@v3
163+
uses: actions/upload-artifact@v4
164164
with:
165165
name: ILSpy self-contained x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
166166
path: ${{ env.StagingDirectory }}\ILSpy_selfcontained_x64.zip
167167
if-no-files-found: error
168168

169169
- name: Upload arm64 framework-dependent zip (Release-only)
170170
if: matrix.configuration == 'release'
171-
uses: actions/upload-artifact@v3
171+
uses: actions/upload-artifact@v4
172172
with:
173173
name: ILSpy arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
174174
path: ${{ env.StagingDirectory }}\ILSpy_binaries_arm64.zip
175175
if-no-files-found: error
176176

177177
- name: Upload x64 installer artifact
178178
if: matrix.configuration == 'release'
179-
uses: actions/upload-artifact@v3
179+
uses: actions/upload-artifact@v4
180180
with:
181181
name: ILSpy Installer x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
182182
path: ILSpy.Installer\wix\*-x64.msi
183183
if-no-files-found: error
184184

185185
- name: Upload arm64 installer artifact
186186
if: matrix.configuration == 'release'
187-
uses: actions/upload-artifact@v3
187+
uses: actions/upload-artifact@v4
188188
with:
189189
name: ILSpy Installer arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
190190
path: ILSpy.Installer\wix\*-arm64.msi
191191
if-no-files-found: error
192192

193193
- name: Upload ilspycmd release build artifacts
194194
if: matrix.configuration == 'release'
195-
uses: actions/upload-artifact@v3
195+
uses: actions/upload-artifact@v4
196196
with:
197197
name: ilspycmd dotnet tool (${{ matrix.configuration }})
198198
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
@@ -22,7 +22,7 @@ jobs:
2222
run: dotnet CycloneDX ILSpy/ILSpy.csproj --out sbom --recursive --exclude-dev --exclude-test-projects
2323

2424
- name: Upload BOM
25-
uses: actions/upload-artifact@v3
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: ILSpyBOM.xml
2828
path: sbom/bom.xml

0 commit comments

Comments
 (0)