From 885928ea1759c9d3e01f398846191a822f4d4f46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 10 Nov 2023 08:55:31 +0200 Subject: [PATCH] ci: Run `cargo update` as part of the `cargo deny` / `cargo outdated` jobs --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f9f5fa0..ab49c93d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -337,6 +337,7 @@ deny: rules: - if: '$CI_PIPELINE_SOURCE == "schedule"' script: + - cargo update --color=always - cargo deny --color=always --workspace --all-features check all outdated: @@ -349,7 +350,8 @@ outdated: rules: - if: '$CI_PIPELINE_SOURCE == "schedule"' script: - - cargo outdated --root-deps-only --exit-code 1 -v + - cargo update --color=always + - cargo outdated --color=always --root-deps-only --exit-code 1 -v coverage: allow_failure: true