From ada11e62e9ff662da4aa34d8b84e12e36d5d7dd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 24 Jan 2025 16:44:22 +0100 Subject: [PATCH] fixup! ci/auto-updates: Use the debian/vendor-rust.sh to vendor dependencies --- .github/workflows/auto-updates.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/auto-updates.yaml b/.github/workflows/auto-updates.yaml index d8a03677b..e18d2df45 100644 --- a/.github/workflows/auto-updates.yaml +++ b/.github/workflows/auto-updates.yaml @@ -36,12 +36,16 @@ jobs: - name: Install dependencies env: DEBIAN_FRONTEND: noninteractive + CARGO_VENDOR_FILTERER_VERSION: 0.5.16 shell: bash run: | set -euo pipefail apt update -y apt install -y dh-cargo + + cargo install --locked --root=/usr \ + cargo-vendor-filterer@${{ env.CARGO_VENDOR_FILTERER_VERSION }} - uses: actions/checkout@v4 with: ref: ${{ matrix.branch }}