From 0b4c886efc31d0adf8a99303006620f289146375 Mon Sep 17 00:00:00 2001 From: Sungjoon Moon Date: Thu, 25 Dec 2025 20:19:30 +0000 Subject: [PATCH] ci: Use git version of cross for better target support --- .github/workflows/CICD.yml | 4 +--- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index e1b82424..4c3db0c8 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -195,9 +195,7 @@ jobs: - name: Install cross if: matrix.job.use-cross - uses: taiki-e/install-action@v2 - with: - tool: cross + run: cargo install cross --git https://github.com/cross-rs/cross --rev 588b3c99db52b5a9c5906fab96cfadcf1bde7863 - name: Overwrite build command env variable if: matrix.job.use-cross diff --git a/CHANGELOG.md b/CHANGELOG.md index cf2c2f84..08b116ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ - Fixed test compatibility with future Cargo build directory changes, see #3550 (@nmacl) ## Other +- Use git version of cross. See #3533 (@OctopusET) - Bump MSRV to 1.88, update `time` crate to 0.3.47 to fix RUSTSEC-2026-0009, see #3581 (@NORMAL-EX)