fix(ci): Flatpak release build fails — locked dep MSRV rose above pinned Rust 1.85.0 #301
Labels
No labels
area:auth
area:ci
area:db
area:infra
area:native
area:pwa
area:service
epic
feature
foundation
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
james/carol#301
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Context
The
release-flatpak.ymlbuild (run 758, "Build and attach .flatpak") fails atcargo build --locked:The workflow pins
RUST_TOOLCHAIN: 1.85.0. The locked Cargo dependency tree'sMSRV has since risen to 1.88.0, and because the build uses
--lockedit can'tfall back to older crate versions. This is a recurrence of the same class of
failure fixed in #293 / PR #294 (which bumped 1.77 → 1.85).
Fix
Bump
RUST_TOOLCHAINto1.88.0(the highest MSRV in the current lockfile).Acceptance criteria
the pinned toolchain.
Out of scope
manual — see the comment in
release-flatpak.yml).