From 10dc8931c798d57f0b4dc132ee652a52736e7bc3 Mon Sep 17 00:00:00 2001 From: Joshua Batty Date: Fri, 12 Dec 2025 14:04:43 +1100 Subject: [PATCH] fix(ci): use --locked when installing cross, bump to v0.28.1 The home crate v0.5.12 (a transitive dep of cross) now requires Rust 1.88, but CI uses 1.85.0. Using --locked ensures cross uses its own Cargo.lock with pinned compatible versions (home v0.5.3). --- .github/workflows/ci.yml | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9bba0ebc..7e6017d2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -209,6 +209,7 @@ jobs: with: crate: cross cache-key: '${{ matrix.job.target }}' + locked: true - name: Build fuelup run: | diff --git a/Cargo.lock b/Cargo.lock index 26119e329..6c9eb2faa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -588,7 +588,7 @@ dependencies = [ [[package]] name = "fuelup" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ansi_term", "ansiterm", diff --git a/Cargo.toml b/Cargo.toml index 2d445b5d5..9ec22867b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuelup" -version = "0.28.0" +version = "0.28.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/"