Check outdated dependencies #124
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check outdated dependencies | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '0 0 * * *' # every day at 00:00 | |
| workflow_dispatch: | |
| jobs: | |
| outdated: | |
| runs-on: ubuntu-24.04 | |
| name: "Check outdated dependencies" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust (stable) | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install cargo-outdated | |
| run: cargo install cargo-outdated | |
| - name: Check outdated | |
| run: cargo outdated |