Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit b4fcc9f

Browse files
committed
Add actions job to notice outdated dependencies
1 parent c8bf3ee commit b4fcc9f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,12 @@ jobs:
2020
toolchain: ${{matrix.rust}}
2121
- run: cargo check
2222
- run: cargo check --manifest-path binary/Cargo.toml
23+
24+
outdated:
25+
name: Outdated
26+
runs-on: ubuntu-latest
27+
if: github.event_name != 'pull_request'
28+
steps:
29+
- uses: actions/checkout@v2
30+
- uses: dtolnay/install@cargo-outdated
31+
- run: cargo outdated --exit-code 1

0 commit comments

Comments
 (0)