fix(ci): track go-install-hardened @v1 instead of dangling SHA - #987
Open
gh-allora wants to merge 1 commit into
Open
fix(ci): track go-install-hardened @v1 instead of dangling SHA#987gh-allora wants to merge 1 commit into
gh-allora wants to merge 1 commit into
Conversation
gh-allora
requested review from
spooktheducks,
xmariachi and
zale144
as code owners
August 25, 2026 13:59
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.
Summary
The
go-hardened.ymlworkflow was pinned to@0d80a856— a dangling commit not reachable from any branch inci-workflows-private. GitHub Actions cannot resolve dangling commit SHAs for cross-repo private workflow calls, causing 100% startup_failure on every run (0 jobs, emptyreferenced_workflows, "workflow file issue").Root cause
PR #17 in
ci-workflows-privatewas squash-merged tomain(notv1). The head SHA0d80a856became a dangling commit — not onmain, not onv1, not on any branch. GitHub Actions needs the commit to be reachable from a branch or tag to resolve it cross-repo.Fix
Switch from
@0d80a856to@v1— the stable release branch. Thev1version is a strict superset of the pinned commit (71 commits ahead), with additional inputs (run_veto,veto_ref,extra_test_flags),checkout@v7.0.0withpersist-credentials: false, and improved govulncheck JSON parsing. No functional regression.Evidence
referenced_workflows: []on every run (GitHub could not resolve the reusable workflow)0d80a856is not an ancestor ofv1,main, or any branchTracking
DEVOP-770 / DEVOP-771
Summary by cubic
Updates
.github/workflows/go-hardened.ymlto callallora-network/ci-workflows-private/.github/workflows/go-install-hardened.yml@v1instead of a dangling commit so Actions can resolve and run the job. Previously every run failed at startup ("workflow was not found", 0 jobs); nowgo-install-hardenedexecutes on pushes and internal PRs, addressing DEVOP-770.Written for commit 3aea03f. Summary will update on new commits.