From a2e20dd2bbd7242e7e4c9aa32bbeda00c4a08f4c Mon Sep 17 00:00:00 2001 From: Afnan Enayet Date: Sun, 12 Mar 2023 12:42:29 -0500 Subject: [PATCH] fix: Use a newer cargo deb version Bump the version of cargo deb to the latest one. The CD workflow has been failing because Cargo is unable to resolve `cargo-deb` because of a library requirement. Hopefully updating to a newer version will fix the issue. --- .github/workflows/CD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index ebc199b5..d417403c 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -273,7 +273,7 @@ jobs: - name: Build Debian release (x86_64-unknown-linux-gnu) if: matrix.job.target == 'x86_64-unknown-linux-gnu' run: | - cargo install cargo-deb --version 1.29.2 + cargo install cargo-deb --version 1.42.2 cargo deb cp ./target/debian/diffsitter_*.deb ./diffsitter_${{ env.RELEASE_VERSION }}_amd64.deb