From d172de4f314ef4df550fd229c18cbecfc11a9487 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:35:51 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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] --- .github/workflows/hive.yml | 2 +- .github/workflows/prepare-reth.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/hive.yml b/.github/workflows/hive.yml index 584a3ec9ab..8cb7f2bcfb 100644 --- a/.github/workflows/hive.yml +++ b/.github/workflows/hive.yml @@ -43,7 +43,7 @@ jobs: run: .github/assets/hive/build_simulators.sh - name: Upload hive assets - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: hive_assets path: ./hive_assets diff --git a/.github/workflows/prepare-reth.yml b/.github/workflows/prepare-reth.yml index 2f7f2fa4c5..3f7b0e0e91 100644 --- a/.github/workflows/prepare-reth.yml +++ b/.github/workflows/prepare-reth.yml @@ -51,7 +51,7 @@ jobs: - name: Upload reth image id: upload - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: artifacts path: ./artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9bd76a95c4..876ffc84fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -141,14 +141,14 @@ jobs: - name: Upload artifact if: ${{ github.event.inputs.dry_run != 'true' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}.tar.gz path: ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}.tar.gz - name: Upload signature if: ${{ github.event.inputs.dry_run != 'true' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}.tar.gz.asc path: ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}.tar.gz.asc