From 336b183e75224573d84201baaf0c5a158e06521b Mon Sep 17 00:00:00 2001 From: Erdem Meydanli Date: Fri, 29 Mar 2024 09:18:02 +0000 Subject: [PATCH] ci: use cargo-about v0.5.6 Since cargo-about increased its minimum supported Rust version to 1.70.0 in version 0.5.7, we need to use a specific version. Signed-off-by: Erdem Meydanli --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56094389e..f371d3d07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,8 +59,8 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - - run: cargo install --locked --version "~0.5" cargo-about - - run: cargo about generate --workspace --output-file "${{ runner.temp }}/licenses.html" about.hbs + - run: cargo install --locked --version "0.4.0" cargo-about + - run: RUST_BACKTRACE=1 cargo about generate --workspace --output-file "${{ runner.temp }}/licenses.html" about.hbs - id: license_diff run: | if diff -q THIRD_PARTY_LICENSES_RUST_CRATES.html ${{ runner.temp }}/licenses.html ; then