Add GitHub CI workflow to detect outdated dependencies

This commit is contained in:
Héctor Ramón Jiménez 2023-09-04 13:32:27 +02:00
parent f468e25d0c
commit 34876aea5e
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

16
.github/workflows/detect.yml vendored Normal file
View 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