Skip to content

fix(ci): update reusable workflow SHAs to @7fdc2705df74b4e352d2a1cde3e87a5923fdf329 - #43

Closed
hyperpolymath wants to merge 3 commits into
mainfrom
fix/ci-426-batch13
Closed

fix(ci): update reusable workflow SHAs to @7fdc2705df74b4e352d2a1cde3e87a5923fdf329#43
hyperpolymath wants to merge 3 commits into
mainfrom
fix/ci-426-batch13

Conversation

@hyperpolymath

Copy link
Copy Markdown
Owner

Part of estate-wide standards#426 remediation - Batch 13 SHA update to fix Bug B (permission escalation) in reusable workflows.

hyperpolymathand others added 3 commits July 27, 2026 18:06
`cargo` refuses to parse the lockfile on `origin/main`:
error: failed to parse lock file at: Cargo.lock
Caused by: package `crossterm` is specified twice in the lockfile
It contained THREE `crossterm` entries — 0.28.1, 0.29.0 and 0.29.0. Two
identical versions is malformed; a package may appear more than once only at
distinct versions. Introduced by 56dc58d ("chore(deps): bump crossterm from
0.28.1 to 0.29.0", #4).
Regenerated with `cargo generate-lockfile`. The resolution is now 0.28.1
(direct, per `Cargo.toml`'s `crossterm = "0.28"`) plus 0.29.0 transitively —
two distinct versions, which is valid. `cargo metadata` now exits 0 where it
previously exited 101.
Found while adding container packaging: the build failed before compilation
even began, and reproduces identically with the host's own cargo 1.97.1
outside any container.
⚠ THIS DOES NOT MAKE THE CRATE BUILD. A separate, pre-existing breakage
remains — the source does not compile against the resolved `ureq`:
error[E0599]: no method named `set` found for struct `RequestBuilder<B>`
--> src/main.rs:66:10
error[E0599]: no variant named `Status` found for enum `ureq::Error`
--> src/main.rs:70:26
Both are ureq 2.x APIs removed in 3.x, so a dependency bump landed without the
corresponding source migration. That is left for a separate change rather than
bundled into a lockfile repair.
Taken together these mean coord-tui's CI has not been compiling this crate:
two dependency bumps merged, one breaking the source and one corrupting the
lockfile, with nothing red enough to stop them.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Cargo.toml already requests ureq = "3" and the lockfile resolves
ureq 3.3.0, so the crate hasn't compiled since that dependency was
bumped — the source still used 2.x-only methods:
- `.set(k, v)` -> `.header(k, v)`
- `.send_string(&s)` -> `.send(&s)`
- `ureq::Error::Status(_, resp)` no longer exists; 3.x's default
`Error::StatusCode(u16)` carries no response body at all. Disabled
`http_status_as_error` on the request so 4xx/5xx responses still
arrive as `Ok`, preserving the original fallback behaviour of
reading the JSON body of error responses instead of discarding it.
- reading the body moved from `Response::into_string()` to
`Response<Body>::body_mut().read_to_string()`.
Verified against the actual ureq-3.3.0 crate source under
~/.cargo/registry rather than from memory.
Two unrelated Dependabot bumps landed back to back on this repo: one
broke this source (ureq 2->3), the other corrupted Cargo.lock
(fixed separately in #35, which this branch is stacked on). Neither
was caught because CI was not actually compiling the crate — this is
the motivating case for adding a real `cargo build`/`cargo test`
gate rather than relying on green Dependabot PRs.
cargo build --release: exit 0
cargo test: exit 0 (0 tests present)
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…e87a5923fdf329
Part of estate-wide standards#426 remediation - Batch 13 SHA update.
Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
@hyperpolymath
hyperpolymath enabled auto-merge (squash) August 13, 2026 03:57
@gitar-bot

gitar-botBot commented Aug 13, 2026

Copy link
Copy Markdown

Important

You are using the Gitar free plan. Upgrade to unlock code review, CI analysis, auto-apply, custom automations, and more.

Gitar

@hyperpolymath

Copy link
Copy Markdown
OwnerAuthor

Closing auto-generated PR as part of nuclear cleanup. Will be recreated fresh from current state if still needed.

auto-merge was automatically disabled August 14, 2026 03:38

Pull request was closed

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@hyperpolymath