Merge pull request #745 from uuid-rs/ci/outdated

Add a workflow for running cargo outdated
This commit is contained in:
Ashley Mannix 2024-03-19 09:25:18 +10:00 committed by GitHub
commit e4746bcbd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

20
.github/workflows/outdated.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Dependency Check
on:
schedule:
- cron: '0 0 * * *'
jobs:
outdated:
name: Update Available
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install cargo-outdated
run: cargo install cargo-outdated
- name: Check for outdated dependencies
run: cargo outdated