From 3325ae44ae327c51fdc133c060f6316c7d4d81b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Dec 2025 18:18:33 +0100 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 (#3638) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-frontends.yml | 2 +- .github/workflows/build-ilspy.yml | 24 ++++++++++++------------ .github/workflows/generate-bom.yml | 2 +- .github/workflows/scorecard.yml | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-frontends.yml b/.github/workflows/build-frontends.yml index d0c82c409..a68b22d60 100644 --- a/.github/workflows/build-frontends.yml +++ b/.github/workflows/build-frontends.yml @@ -43,7 +43,7 @@ jobs: - name: Upload binlog if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: binlog path: '**/*.binlog' diff --git a/.github/workflows/build-ilspy.yml b/.github/workflows/build-ilspy.yml index 9ea4cbac2..9e83440a4 100644 --- a/.github/workflows/build-ilspy.yml +++ b/.github/workflows/build-ilspy.yml @@ -72,7 +72,7 @@ jobs: run: dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --results-directory test-results/${{ matrix.configuration }} - name: Upload Test Logs - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: success() || failure() with: name: test-results-${{ matrix.configuration }} @@ -130,7 +130,7 @@ jobs: # https://github.com/actions/upload-artifact - name: Upload VSIX (VS 2019) release build artifacts if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy VS Addin for VS 2017-2019 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ILSpy.AddIn\bin\${{ matrix.configuration }}\net472\*.vsix @@ -138,7 +138,7 @@ jobs: - name: Upload VSIX (VS 2022) release build artifacts if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy VS Addin for VS 2022 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ILSpy.AddIn.VS2022\bin\${{ matrix.configuration }}\net472\*.vsix @@ -146,7 +146,7 @@ jobs: - name: Upload Decompiler NuGet release build artifacts if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ICSharpCode.Decompiler NuGet Package (${{ matrix.configuration }}) path: ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg @@ -159,7 +159,7 @@ jobs: - name: Upload ILSpyX NuGet release build artifacts if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ICSharpCode.ILSpyX NuGet Package (${{ matrix.configuration }}) path: ICSharpCode.ILSpyX\bin\Release\ICSharpCode.ILSpyX*.nupkg @@ -172,7 +172,7 @@ jobs: - name: Upload BamlDecompiler NuGet release build artifacts if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ICSharpCode.BamlDecompiler NuGet Package (${{ matrix.configuration }}) path: ICSharpCode.BamlDecompiler\bin\Release\ICSharpCode.BamlDecompiler*.nupkg @@ -184,7 +184,7 @@ jobs: dotnet nuget push "ICSharpCode.BamlDecompiler\bin\Release\ICSharpCode.BamlDecompiler*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/${{ github.repository_owner }} - name: Upload zip binaries build artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ${{ env.StagingDirectory }}\ILSpy_binaries.zip @@ -192,7 +192,7 @@ jobs: - name: Upload x64 self-contained zip (Release-only) if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy self-contained x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ${{ env.StagingDirectory }}\ILSpy_selfcontained_x64.zip @@ -200,7 +200,7 @@ jobs: - name: Upload arm64 framework-dependent zip (Release-only) if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ${{ env.StagingDirectory }}\ILSpy_binaries_arm64.zip @@ -208,7 +208,7 @@ jobs: - name: Upload x64 installer artifact if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy Installer x64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ILSpy.Installer\wix\*-x64.msi @@ -216,7 +216,7 @@ jobs: - name: Upload arm64 installer artifact if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpy Installer arm64 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }}) path: ILSpy.Installer\wix\*-arm64.msi @@ -224,7 +224,7 @@ jobs: - name: Upload ilspycmd release build artifacts if: matrix.configuration == 'release' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ilspycmd dotnet tool (${{ matrix.configuration }}) path: ICSharpCode.ILSpyCmd\bin\Release\ilspycmd*.nupkg diff --git a/.github/workflows/generate-bom.yml b/.github/workflows/generate-bom.yml index a9bbf029c..9e2afde98 100644 --- a/.github/workflows/generate-bom.yml +++ b/.github/workflows/generate-bom.yml @@ -26,7 +26,7 @@ jobs: run: dotnet-CycloneDX ILSpy/ILSpy.csproj --output sbom --recursive --exclude-dev --exclude-test-projects - name: Upload BOM - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ILSpyBOM.xml path: sbom/bom.xml diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index ac439e06e..abe551f00 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -36,7 +36,7 @@ jobs: publish_results: true - name: "Upload artifact" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: SARIF file path: results.sarif