ci(hypatia): fix workflow floor (upload-artifact SHA + setup-beam v1.24.0 + env.HOME)#37
Merged
hyperpolymath merged 1 commit intomainfrom May 1, 2026
Merged
Conversation
…24.0 + env.HOME)
Three independent CI bugs in hypatia-scan.yml that block every consumer of the RSR template floor (echo-types#30 hit all three).
1. actions/upload-artifact pinned to non-existent SHA 65c79d7f...
resolved (canonical v4 SHA) -> ea165f8d65b6e75b540449e92b4886f43607fa02
2. erlef/setup-beam v1.18.2 doesn't support ubuntu-24 (runner image).
bumped -> v1.24.0 (fc68ffb9...)
3. working-directory used ${{ env.HOME }} which expands to empty in
GH Actions context. Switched to shell cd \C:\Users\USER/hypatia` inside
the run script.
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
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.
Three independent CI bugs in
.github/workflows/hypatia-scan.ymlthat block every consumer of the RSR template floor (echo-types#30 hit all three before merge).actions/upload-artifactpinned to non-existent SHA65c79d7f...->ea165f8d65b6e75b540449e92b4886f43607fa02(canonicalv4)erlef/setup-beam@v1.18.2errors on ubuntu-24 runner image (Tried to map a target OS from env. variable 'ImageOS' (got ubuntu24), but failed) ->v1.24.0(fc68ffb9...)working-directory:${{ env.HOME }}/hypatia` resolves to `/hypatia` (env.HOME is unset in GH Actions context). Switched to `cd `\C:\Users\USER/hypatiainside the run script.There is also a separate scanner-exit-1 vs
set -edesign issue (the workflow comment# Warn but don't failintends non-blocking) — out of scope for this PR.