ci: checkout must init with the sha256 object format #136
No reviewers
Labels
No labels
breaking
bug
documentation
enhancement
epic
good first issue
help wanted
refactoring
resolution/duplicate
resolution/invalid
resolution/wontfix
security
severity/critical
severity/high
severity/low
severity/medium
status/abandoned
status/blocked
status/needs-decision
status/needs-info
status/needs-verification
testing
upstream
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
sixfold-space/madtea!136
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refs/pull/136/head"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
The first live run of the de-node'd workflows failed at every checkout with "fatal: mismatched algorithms: client sha1; server sha256": this repository uses the sha256 object format, and the new in-container checkout's bare git init created a sha1 client. Every checkout step in ci.yml and drift.yml now runs git init --object-format=sha256 with a comment explaining why. Verified end-to-end inside the runner VM with forgejo-runner exec against codeberg.org: checkout lands the exact ref and the vet job runs green. Refs #47.