ci: pin download-artifact to v7 to fix intermittent failures on self-hosted runners#6526
Merged
Conversation
…hosted runners v8 of actions/download-artifact introduced a regression causing frequent failures on self-hosted (ARM64) runners: downloads redirect to Azure Blob Storage and fail after 5 retries. v7 is stable and matches the upload-artifact version already in use across these workflows. Closes #6390
mythical-fred
approved these changes
Jun 23, 2026
mythical-fred
left a comment
There was a problem hiding this comment.
LGTM. Clean revert from v8 to v7 across all 8 call sites. Pinned to SHA so it's reproducible. Matches upload-artifact version already in the repo.
gz
approved these changes
Jun 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v8 of actions/download-artifact introduced a regression that causes frequent download failures on self-hosted (ARM64) runners. The download redirects to Azure Blob Storage and fails after 5 retries with "Unable to download and extract artifact."
Pinning to v7, which is stable and matches the upload-artifact version already in use across these workflows.
Affects 8 usages across build-docker.yml, build-docker-dev.yml, test-unit.yml, test-adapters.yml, test-integration-platform.yml.
Closes #6390