From d31a9fece45b48487d207efa2e9368436a4e8064 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 27 Apr 2020 14:11:15 +0200 Subject: [PATCH] ci: install cargo-audit Not needed for gstreamer-rs as it uses 'cargo deny' but still used by gst-plugins-rs and gstreamer-rs-sys. --- ci/images_template.yml | 2 +- ci/install-rust.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/images_template.yml b/ci/images_template.yml index 9bb84567e..c3f48afb0 100644 --- a/ci/images_template.yml +++ b/ci/images_template.yml @@ -1,2 +1,2 @@ variables: - GST_RS_IMG_TAG: '2020-04-27.0' + GST_RS_IMG_TAG: '2020-04-27.1' diff --git a/ci/install-rust.sh b/ci/install-rust.sh index f4f79682b..9305ff5d1 100755 --- a/ci/install-rust.sh +++ b/ci/install-rust.sh @@ -22,4 +22,5 @@ if [ "$RUST_VERSION" = "stable" ]; then rustup component add rustfmt cargo install --force cargo-deny cargo install --force --git https://github.com/kbknapp/cargo-outdated + cargo install --force cargo-audit fi