From 3a4f12c2fb7575cec02ca971888a771bca630780 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Wed, 14 Oct 2020 21:41:13 -0500 Subject: [PATCH] maint/CICD ~ improve robustness of MinRustV package dependency calculation --- .github/workflows/CICD.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index df4c34564..2cafe77ac 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -136,9 +136,9 @@ jobs: cargo-tree tree -V ## dependencies echo "## dependency list" + cargo fetch --quiet ## * using the 'stable' toolchain is necessary to avoid "unexpected '--filter-platform'" errors - RUSTUP_TOOLCHAIN=stable cargo fetch --quiet - RUSTUP_TOOLCHAIN=stable cargo-tree tree --all --no-dev-dependencies --no-indent --features ${{ matrix.job.features }} | grep -vE "$PWD" | sort --unique + RUSTUP_TOOLCHAIN=stable cargo-tree tree --frozen --all --no-dev-dependencies --no-indent --features ${{ matrix.job.features }} | grep -vE "$PWD" | sort --unique - name: Test uses: actions-rs/cargo@v1 with: