Skip to content

chore(deps): update actions/download-artifact action to v5#15

Merged
filiplajszczak merged 1 commit intomasterfrom
renovate/major-github-artifact-actions
Sep 10, 2025
Merged

chore(deps): update actions/download-artifact action to v5#15
filiplajszczak merged 1 commit intomasterfrom
renovate/major-github-artifact-actions

Conversation

@anaconda-renovate
Copy link
Contributor

@anaconda-renovate anaconda-renovate bot commented Sep 10, 2025

This PR contains the following updates:

Package Type Update Change
actions/download-artifact action major v4.3.0 -> v5.0.0
renovate update details

Field Value
manager github-actions
categories ci
datasource github-tags
depName actions/download-artifact
depType¹ action
packageName actions/download-artifact
sourceUrl https://github.com/actions/download-artifact
updateType major
versioning regex:^v?(?<major>\d+)(.(?<minor>\d+).(?<patch>\d+))?$

¹ only available for some managers


Release Notes

actions/download-artifact (actions/download-artifact)

v5.0.0

Compare Source

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:

  • By name: name: my-artifact → extracted to path/ (direct)
  • By ID: artifact-ids: 12345 → extracted to path/my-artifact/ (nested)

Now both methods are consistent:

  • By name: name: my-artifact → extracted to path/ (unchanged)
  • By ID: artifact-ids: 12345 → extracted to path/ (fixed - now direct)
Migration Guide
✅ No Action Needed If:
  • You download artifacts by name
  • You download multiple artifacts by ID
  • You already use merge-multiple: true as a workaround
⚠️ 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):

- uses: actions/download-artifact@v5
  with:
    artifact-ids: 12345
    path: dist/my-artifact  # Explicitly specify the nested path
New Contributors

Full Changelog: actions/download-artifact@v4...v5.0.0


Configuration

📅 Schedule: Branch creation - "every weekday" in timezone UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@filiplajszczak filiplajszczak force-pushed the master branch 3 times, most recently from f9c653a to 906cdce Compare September 10, 2025 14:43
@anaconda-renovate anaconda-renovate bot force-pushed the renovate/major-github-artifact-actions branch from face5b0 to d0fce60 Compare September 10, 2025 14:50
@filiplajszczak filiplajszczak merged commit 4ffb7cc into master Sep 10, 2025
4 checks passed
@anaconda-renovate anaconda-renovate bot deleted the renovate/major-github-artifact-actions branch September 10, 2025 14:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments