chore(deps): bump actions/download-artifact from 3 to 8 - #42
chore(deps): bump actions/download-artifact from 3 to 8#42dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Comment @cursor review or bugbot run to trigger another review on this PR
Reviewed by Cursor Bugbot for commit f5b1112. Configure here.
| steps: | ||
| - name: Download docker artifact | ||
| uses: actions/download-artifact@v3 | ||
| uses: actions/download-artifact@v8 |
There was a problem hiding this comment.
Incompatible artifact action versions
High Severity
actions/download-artifact is bumped to v8 while actions/upload-artifact remains at v3. Artifacts from upload-artifact@v3 are not compatible with download-artifact@v4+, so both downloads in package-ketch-event-forwarder fail. That blocks container push and the dependent release job on the default branch.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit f5b1112. Configure here.


Bumps actions/download-artifact from 3 to 8.
Release notes
Sourced from actions/download-artifact's releases.
... (truncated)
Commits
3e5f45bAdd regression tests for CJK characters (#471)e6d03f6Add a regression test for artifact name + content-type mismatches (#472)70fc10cMerge pull request #461 from actions/danwkennedy/digest-mismatch-behaviorf258da9Add change docsccc058eFix linting issuesbd7976bAdd a setting to specify what to do on hash mismatch and default it toerrorac21fcfMerge pull request #460 from actions/danwkennedy/download-no-unzip15999bfAdd note about package bumps974686eBump the version tov8and add release notesfbe48b1Update test names to make it clearer what they doDependabot 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Note
Low Risk
CI-only dependency bump with unchanged step configuration; main caveat is stricter artifact integrity checks and Node 24 runner requirements in upstream v7+.
Overview
Updates the package-ketch-event-forwarder job in
.github/workflows/ci.ymlso both artifact download steps useactions/download-artifact@v8instead of v3 (thedockerandbuild/libsartifacts from the build job).No workflow inputs or paths change—only the action major version. v8 runs on a newer Node runtime and treats digest/hash mismatches as failures by default; self-hosted runners need a recent Actions Runner if you use them.
Reviewed by Cursor Bugbot for commit f5b1112. Configure here.