ci(e2e): fix invalid actions/download-artifact SHA pin - #270
Merged
Conversation
The per-test-job e2e pinned actions/download-artifact to a corrupted SHA (65a9edc12816...) that no longer resolves, so every M1 test job failed at 'Unable to resolve action' and the suite never ran (red on main). Repin to the real v4.1.7 commit (65a9edc58814...).
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.
Problem
The per-test-job e2e (composite action
.github/actions/e2e-m1-test) pinsactions/download-artifactto a corrupted SHA (65a9edc12816…) that nolonger resolves. Every M1 test job that downloads the built binary fails at
Unable to resolve action … unable to find version, so the whole suite neverruns — red on
maintoday and on every PR whose e2e merges with main.Fix
Repin to the real
v4.1.7commit (65a9edc58814…, verified via the GitHub APIto resolve to an actions/download-artifact commit). One-line, SHA-pinned per the
repo convention.
Discovered while validating #269 (remove-volume fix) — that PR's e2e couldn't
reach its target test because this pin failed first.