Add GitHub CI workflow to detect outdated dependencies
This commit is contained in:
parent
f468e25d0c
commit
34876aea5e
1 changed files with 16 additions and 0 deletions
16
.github/workflows/detect.yml
vendored
Normal file
16
.github/workflows/detect.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
name: Detect
|
||||||
|
on:
|
||||||
|
push: {}
|
||||||
|
pull_request: {}
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
jobs:
|
||||||
|
outdated_dependencies:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: hecrj/setup-rust-action@v1
|
||||||
|
- name: Install cargo-outdated
|
||||||
|
run: cargo install cargo-outdated
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Detect outdated dependencies
|
||||||
|
run: cargo outdated --exit-code 1
|
||||||
Loading…
Add table
Add a link
Reference in a new issue