Update dependencies #210
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: Dependencies | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: "12 16 * * 5" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cargo Outdated | |
| run: cargo install cargo-outdated && cargo outdated -i cargo_metadata --exit-code 1 | |
| - name: Cargo Audit | |
| run: cargo install cargo-audit && cargo audit -D warnings |