Skip to content

Commit 76b31c8

Browse files
committed
Add actions job to notice outdated dependencies
1 parent 46c1523 commit 76b31c8

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
@@ -40,3 +40,12 @@ jobs:
4040
- run: git rebase HEAD FETCH_HEAD
4141
- run: cargo test
4242
working-directory: ${{matrix.project}}
43+
44+
outdated:
45+
name: Outdated
46+
runs-on: ubuntu-latest
47+
if: github.event_name != 'pull_request'
48+
steps:
49+
- uses: actions/checkout@v3
50+
- uses: dtolnay/install@cargo-outdated
51+
- run: cargo outdated --workspace --exit-code 1

0 commit comments

Comments
 (0)