From 707427c63a1422aed8596edb63bb946b0069e1cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:23:49 +0100 Subject: [PATCH] ci: [DEPENDABOT] Bump actions/download-artifact from 4 to 5 (#2414) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5.
Release notes

Sourced from actions/download-artifact's releases.

v5.0.0

What's Changed

v5.0.0

🚨 Breaking Change

This release fixes an inconsistency in path behavior for single artifact downloads by ID. If you're downloading single artifacts by ID, the output path may change.

What Changed

Previously, single artifact downloads behaved differently depending on how you specified the artifact:

Now both methods are consistent:

Migration Guide

✅ No Action Needed If:
⚠️ Action Required If:

You download single artifacts by ID and your workflows expect the nested directory structure.

Before v5 (nested structure):

- uses: actions/download-artifact@v4
  with:
    artifact-ids: 12345
    path: dist
# Files were in: dist/my-artifact/

Where my-artifact is the name of the artifact you previously uploaded

To maintain old behavior (if needed):

</tr></table>

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/download-artifact&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ayaz Salikhov --- .github/workflows/build.yml | 2 +- .github/workflows/build_clio_docker_image.yml | 2 +- .github/workflows/check_libxrpl.yml | 2 +- .github/workflows/release_impl.yml | 2 +- .github/workflows/test_impl.yml | 4 ++-- .github/workflows/upload_coverage_report.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48e96b71..b14b61a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,7 +95,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: clio_server_Linux_Release_gcc diff --git a/.github/workflows/build_clio_docker_image.yml b/.github/workflows/build_clio_docker_image.yml index 609bdf49..ab0ddd52 100644 --- a/.github/workflows/build_clio_docker_image.yml +++ b/.github/workflows/build_clio_docker_image.yml @@ -48,7 +48,7 @@ jobs: - name: Download Clio binary from artifact if: ${{ inputs.artifact_name != null }} - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ inputs.artifact_name }} path: ./docker/clio/artifact/ diff --git a/.github/workflows/check_libxrpl.yml b/.github/workflows/check_libxrpl.yml index 79091747..c2b900f6 100644 --- a/.github/workflows/check_libxrpl.yml +++ b/.github/workflows/check_libxrpl.yml @@ -65,7 +65,7 @@ jobs: image: ghcr.io/xrplf/clio-ci:a446d85297b3006e6d2c4dc7640368f096afecf5 steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: clio_tests_check_libxrpl diff --git a/.github/workflows/release_impl.yml b/.github/workflows/release_impl.yml index 56e97999..6bf830af 100644 --- a/.github/workflows/release_impl.yml +++ b/.github/workflows/release_impl.yml @@ -60,7 +60,7 @@ jobs: with: disable_ccache: true - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: path: release_artifacts pattern: clio_server_* diff --git a/.github/workflows/test_impl.yml b/.github/workflows/test_impl.yml index d6909fdc..4325d551 100644 --- a/.github/workflows/test_impl.yml +++ b/.github/workflows/test_impl.yml @@ -54,7 +54,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: clio_tests_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }} @@ -144,7 +144,7 @@ jobs: sleep 5 done - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: clio_integration_tests_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }} diff --git a/.github/workflows/upload_coverage_report.yml b/.github/workflows/upload_coverage_report.yml index c7e58061..e323f63c 100644 --- a/.github/workflows/upload_coverage_report.yml +++ b/.github/workflows/upload_coverage_report.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - name: Download report artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: coverage-report.xml path: build