mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 05:21:00 +00:00
ci: run 'cargo outdated' in scheduled jobs
Automatically detect if a crate we are directly using is outdated.
This commit is contained in:
parent
53194a64f3
commit
281aad2243
1 changed files with 10 additions and 0 deletions
|
@ -113,3 +113,13 @@ audit:
|
||||||
script:
|
script:
|
||||||
- cargo install --force cargo-audit
|
- cargo install --force cargo-audit
|
||||||
- cargo audit --deny-warnings
|
- cargo audit --deny-warnings
|
||||||
|
|
||||||
|
outdated:
|
||||||
|
extends: '.tarball_setup'
|
||||||
|
image: "rust:slim-buster"
|
||||||
|
stage: 'extras'
|
||||||
|
only:
|
||||||
|
- schedules
|
||||||
|
script:
|
||||||
|
- cargo install --force --git https://github.com/kbknapp/cargo-outdated
|
||||||
|
- cargo outdated --root-deps-only --exit-code 1 -v
|
||||||
|
|
Loading…
Reference in a new issue