From 0c01fd23b4b8fc228f14ea0a75796ad52b85d675 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 26 Oct 2024 17:27:59 +0900 Subject: [PATCH] ci: use patched version of cargo-check-external-types to fix CI failure (#6937) --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 548d53e33..47507d6aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1035,7 +1035,7 @@ jobs: rust: # `check-external-types` requires a specific Rust nightly version. See # the README for details: https://github.com/awslabs/cargo-check-external-types - - nightly-2023-10-21 + - nightly-2024-06-30 steps: - uses: actions/checkout@v4 - name: Install Rust ${{ matrix.rust }} @@ -1046,7 +1046,10 @@ jobs: - name: Install cargo-check-external-types uses: taiki-e/cache-cargo-install-action@v1 with: - tool: cargo-check-external-types@0.1.10 + tool: cargo-check-external-types + # TODO: install from crates.io once https://github.com/awslabs/cargo-check-external-types/pull/183 merged and released. + git: https://github.com/taiki-e/cargo-check-external-types.git + rev: 83a8d29 - name: check-external-types run: cargo check-external-types --all-features working-directory: tokio