From 31e51324e2604199591fa425807ca855a4e7f97a Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 6 Jun 2022 15:59:23 -0700 Subject: [PATCH] Add actions job to notice outdated dependencies --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa99e7784..476a0a933 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -179,3 +179,12 @@ jobs: - run: cd test_suite && cargo miri test --features unstable env: MIRIFLAGS: -Zmiri-strict-provenance + + outdated: + name: Outdated + runs-on: ubuntu-latest + if: github.event_name != 'pull_request' + steps: + - uses: actions/checkout@v3 + - uses: dtolnay/install@cargo-outdated + - run: cargo outdated --workspace --exclude macrotest --exit-code 1