Skip to content

chore(ci): bump actions/download-artifact from 4.3.0 to 8.0.1#38

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/download-artifact-8.0.1
Open

chore(ci): bump actions/download-artifact from 4.3.0 to 8.0.1#38
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/download-artifact-8.0.1

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 21, 2026

Bumps actions/download-artifact from 4.3.0 to 8.0.1.

Release notes

Sourced from actions/download-artifact's releases.

v8.0.1

What's Changed

Full Changelog: actions/download-artifact@v8...v8.0.1

v8.0.0

v8 - What's new

[!IMPORTANT] actions/download-artifact@v8 has been migrated to an ESM module. This should be transparent to the caller but forks might need to make significant changes.

[!IMPORTANT] Hash mismatches will now error by default. Users can override this behavior with a setting change (see below).

Direct downloads

To support direct uploads in actions/upload-artifact, the action will no longer attempt to unzip all downloaded files. Instead, the action checks the Content-Type header ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the new skip-decompress parameter to true.

Enforced checks (breaking)

A previous release introduced digest checks on the download. If a download hash didn't match the expected hash from the server, the action would log a warning. Callers can now configure the behavior on mismatch with the digest-mismatch parameter. To be secure by default, we are now defaulting the behavior to error which will fail the workflow run.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

Full Changelog: actions/download-artifact@v7...v8.0.0

v7.0.0

v7 - What's new

[!IMPORTANT] actions/download-artifact@v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

... (truncated)

Commits
  • 3e5f45b Add regression tests for CJK characters (#471)
  • e6d03f6 Add a regression test for artifact name + content-type mismatches (#472)
  • 70fc10c Merge pull request #461 from actions/danwkennedy/digest-mismatch-behavior
  • f258da9 Add change docs
  • ccc058e Fix linting issues
  • bd7976b Add a setting to specify what to do on hash mismatch and default it to error
  • ac21fcf Merge pull request #460 from actions/danwkennedy/download-no-unzip
  • 15999bf Add note about package bumps
  • 974686e Bump the version to v8 and add release notes
  • fbe48b1 Update test names to make it clearer what they do
  • Additional commits viewable in compare view

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 21, 2026

Labels

The following labels could not be found: dependencies, github-actions. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot requested a review from a team as a code owner May 21, 2026 12:04
@github-actions github-actions Bot added the size/XS PR size: XS label May 21, 2026
Copy link
Copy Markdown
Contributor

@lml2468 lml2468 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[APPROVE β€” self-review, posting as COMMENT] Correct SHA-pinned bump.

βœ… download-artifact 4.3.0 β†’ 8.0.1: SHA updated d3f86a1 β†’ 3e5f45b, version comment updated.

⚠️ Coordination required with PR #36 (upload-artifact 4β†’7): upload and download artifact actions must use a compatible storage backend. Recommend merging #36 and #38 in the same batch and verifying the workflow end-to-end after merge (the multi-arch digest upload β†’ merge job path in docker-publish.yml).

Ready to merge alongside #36.

Copy link
Copy Markdown

@Jerry-Xin Jerry-Xin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One-line summary: The PR is in scope and safely updates the Docker publish workflow’s artifact download action.

βœ… Highlights

  • πŸ”΅ Verified .github/workflows/docker-publish.yml:223: the pinned SHA matches upstream actions/download-artifact v8.0.1.
  • πŸ”΅ The download step runs on ubuntu-latest, so the download-artifact@v7+ Node 24 runner requirement is satisfied.
  • πŸ”΅ The existing upload-artifact@v4.6.2 digest artifacts and merge-multiple: true flow remain compatible with the upgraded download action.
  • πŸ”΅ The stricter v8 digest mismatch default is desirable here; failing the publish workflow on artifact integrity mismatch is appropriate.

No blocking issues found. No test changes are needed for this one-line CI dependency bump.

Copy link
Copy Markdown
Contributor

@lml2468 lml2468 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[APPROVE β€” COMMENT due to self-review restriction] Independent cross-review.

Verified:

  1. SHA pin β€” 3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c matches actions/download-artifact tag v8.0.1. βœ…
  2. Usage compatibility β€” with: { path, pattern, merge-multiple } inputs are stable across v4β†’v8. The pattern: digests-* + merge-multiple: true usage is supported since v4.1.0. βœ…
  3. Pairs with PR #36 β€” upload-artifact bumped to v7.0.1. Both use the same Artifacts v2 backend; v8 download is wire-compatible with v7 upload. βœ…
  4. CI β€” All checks green. βœ…

No blocking issues. Recommend merging alongside or after PR #36 for a clean pair.

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.3.0 to 8.0.1.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@d3f86a1...3e5f45b)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/github_actions/actions/download-artifact-8.0.1 branch from 58b31e2 to 7b56b9f Compare May 27, 2026 05:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size/XS PR size: XS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants