Skip to content

Bump actions/download-artifact from 4.3.0 to 8.0.1 - #1016

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

Bump actions/download-artifact from 4.3.0 to 8.0.1#1016
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/download-artifact-8.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

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 compatibility score

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 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 show <dependency name> 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)

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 added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 24, 2026
@fullsend-ai-review

fullsend-ai-review Bot commented Aug 24, 2026

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 7:46 AM UTC · Completed 7:56 AM UTC

Commit: 9ee3c25 · View workflow run →

@fullsend-ai-review

Copy link
Copy Markdown

Review

Findings

High

  • [protected-path] .github/workflows/agent-files-enforce.yaml — This PR modifies a file under the .github/ protected path. The PR has no linked issue providing authorization for modifying governance or infrastructure files. Human approval is always required for protected-path changes, regardless of whether the change is a routine dependency update.
    Remediation: Ensure a reviewer with write access evaluates and approves the changes to this protected workflow file.

Low

  • [API contract violation] .github/workflows/agent-files-enforce.yaml:81 — The PR bumps actions/download-artifact from v4.3.0 to v8.0.1, spanning four major versions with breaking changes: (1) v8 defaults hash-mismatch handling to error instead of warning; (2) v8 no longer auto-unzips non-zipped downloads (checks Content-Type first); (3) v7 requires Node.js 24 runtime and Actions Runner 2.327.1+. The workflow is well-defended against all three scenarios: the step has continue-on-error: true, the decide step's read_bool function fails closed on missing files (returning invalid which triggers label_action=add), the only steps.download.outcome == 'success' check gates artifact cleanup (harmless to skip), and ubuntu-latest runners support Node.js 24.

Labels: Major version bump (v4→v8) of a GitHub Actions dependency; single-line change


Next steps:

  • /fs-fix — agent addresses review findings automatically
  • /fs-fix <your instruction> — agent fixes with your specific guidance
  • Push commits directly — review re-runs automatically on push
  • /fs-fix-stop — disable automatic fix runs for this PR

@fullsend-ai-review fullsend-ai-review Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

See the review comment for full details.

id: download
continue-on-error: true
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

[low] API contract violation

The PR bumps actions/download-artifact from v4.3.0 to v8.0.1, spanning four major versions with breaking changes: (1) v8 defaults hash-mismatch handling to 'error'; (2) v8 no longer auto-unzips non-zipped downloads; (3) v7 requires Node.js 24 runtime and Actions Runner 2.327.1+. However, the workflow is well-defended: continue-on-error: true catches failures, the decide step fails closed on missing files, upstream upload-artifact produces standard zipped artifacts, and ubuntu-latest runners support Node.js 24.

@fullsend-ai-review fullsend-ai-review Bot added semver/major Semver major version bump Review effort 1/5 labels Aug 24, 2026
@codecov-commenter

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 30.03%. Comparing base (8c12c4b) to head (dfb40b1).

❗ There is a different number of reports uploaded between BASE (8c12c4b) and HEAD (dfb40b1). Click for more details.

HEAD has 3 uploads less than BASE
Flag BASE (8c12c4b) HEAD (dfb40b1)
e2e-tests 2 1
unit-tests 2 0
Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##             main    #1016       +/-   ##
===========================================
- Coverage   76.92%   30.03%   -46.90%     
===========================================
  Files          26       26               
  Lines        2817     2817               
===========================================
- Hits         2167      846     -1321     
- Misses        452     1804     +1352     
+ Partials      198      167       -31     
Flag Coverage Δ
e2e-tests 30.03% <ø> (-0.25%) ⬇️
unit-tests ?

Flags with carried forward coverage won't be shown. Click here to find out more.
see 22 files with indirect coverage changes


Continue to review full report in Codecov by Harness.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 8c12c4b...dfb40b1. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

agent-config-review-required dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code Review effort 1/5 semver/major Semver major version bump

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant