Skip to content

Commit

Permalink
add a workflow for running cargo outdated
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Mar 18, 2024
1 parent 23b8703 commit ca952b1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
File renamed without changes.
24 changes: 24 additions & 0 deletions .github/workflows/outdated.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dependency Check

on:
pull_request:
push:
branches:
- main
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 ca952b1

Please sign in to comment.