Skip to content

Commit f0aa848

Browse files
Bump actions/upload-artifact from 6 to 7 (#3672)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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 6965945 commit f0aa848

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@v6
46+
uses: actions/upload-artifact@v7
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
@@ -75,7 +75,7 @@ jobs:
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

.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@v6
29+
uses: actions/upload-artifact@v7
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@v6
39+
uses: actions/upload-artifact@v7
4040
with:
4141
name: SARIF file
4242
path: results.sarif

0 commit comments

Comments
 (0)