Skip to content

Commit bcef6de

Browse files
committed
ci: fix linux release
* Partial fix of 7eaf7b4 Signed-off-by: Richard Zak <richard.j.zak@gmail.com>
1 parent ad7ea23 commit bcef6de

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,14 @@ jobs:
4949
rustup target install x86_64-unknown-linux-musl
5050
sudo apt-get update
5151
sudo apt-get install -y musl musl-dev musl-tools dpkg-dev liblzma-dev
52-
- name: Install additional cargo tools if not in the cache
53-
run: cargo install cargo-deb cargo-auditable cargo-audit
52+
- name: Install cargo-deb if not in the cache
53+
run: cargo install cargo-deb
5454
if: steps.cargo-cache.outputs.cache-hit != 'true'
5555
continue-on-error: true
56+
- name: Install cargo audit & auditable
57+
uses: taiki-e/install-action@d0f4f69b07c0804d1003ca9a5a5f853423872ed9 # v2.62.13
58+
with:
59+
tool: cargo-audit,cargo-auditable
5660
- id: version
5761
run: echo "version=$(cargo metadata --format-version=1 --no-deps | jq '.packages[] | select(.name == "malwaredb") | .version' --raw-output)" >>$GITHUB_OUTPUT
5862
- name: Install dependencies

0 commit comments

Comments
 (0)