Skip to content

Commit

Permalink
Add GitHub CI workflow to detect outdated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Sep 4, 2023
1 parent f468e25 commit 34876ae
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/detect.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 34876ae

Please sign in to comment.