Skip to content

Commit

Permalink
Merge pull request #745 from uuid-rs/ci/outdated
Browse files Browse the repository at this point in the history
Add a workflow for running cargo outdated
  • Loading branch information
KodrAus authored Mar 18, 2024
2 parents d0396ad + 84dcbba commit e4746bc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
File renamed without changes.
20 changes: 20 additions & 0 deletions .github/workflows/outdated.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e4746bc

Please sign in to comment.