chore(deps): bump rubato from 0.16.2 to 2.0.0 #854
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: "Cargo Deny" | |
| on: | |
| push: | |
| paths: | |
| # Run if workflow changes | |
| - '.github/workflows/cargo-deny.yml' | |
| # Run on changed dependencies | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| # Run if the configuration file changes | |
| - 'deny.toml' | |
| # Rerun periodically to pick up new advisories | |
| schedule: | |
| - cron: '0 0 * * *' | |
| # Run manually | |
| workflow_dispatch: | |
| jobs: | |
| deny: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'aaif-goose/goose' | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # https://github.com/EmbarkStudios/cargo-deny-action v2.0.15 | |
| - uses: EmbarkStudios/cargo-deny-action@91bf2b620e09e18d6eb78b92e7861937469acedb | |
| with: | |
| command: check advisories |