From e78bfa722e9398a703081ef37a794047131f719f Mon Sep 17 00:00:00 2001 From: Tillmann <28728469+tweidinger@users.noreply.github.com> Date: Thu, 9 May 2024 21:04:35 +0900 Subject: [PATCH] fix: Only provide `cargo-vet` suggestions for now (#9714) As the workflow is failing because of a larger number of unvetted dependencies I transform this to suggestions only until we have a better vetting workflow and resources to audit available. --- .github/workflows/supply-chain.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/supply-chain.yml b/.github/workflows/supply-chain.yml index 2db8db33d..8131b6918 100644 --- a/.github/workflows/supply-chain.yml +++ b/.github/workflows/supply-chain.yml @@ -37,8 +37,9 @@ jobs: - name: Ensure that the tool cache is populated with the cargo-vet binary run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet - - name: Invoke cargo-vet - run: cargo vet --locked +# Enable this again to break the workflow once we have a reasonable amount of suggestions to get to a clean base line +# - name: Invoke cargo-vet +# run: cargo vet --locked - name: Provide audit suggestions run: cargo vet --locked suggestions