Skip to content

Commit 5c826fe

Browse files
committed
Add GitHub CI workflow to detect outdated dependencies
1 parent f468e25 commit 5c826fe

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/detect.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Detect
2+
on:
3+
push: {}
4+
pull_request: {}
5+
schedule:
6+
- cron: '0 0 * * *'
7+
jobs:
8+
outdated_dependencies:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: hecrj/setup-rust-action@v1
12+
- name: Install cargo-outdated
13+
run: cargo install cargo-outdated
14+
- uses: actions/checkout@master
15+
- name: Detect outdated dependencies
16+
run: cargo outdated --exit-status 1

0 commit comments

Comments
 (0)