mirror of
https://github.com/uuid-rs/uuid.git
synced 2025-12-29 20:50:55 +00:00
21 lines
398 B
YAML
21 lines
398 B
YAML
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
|