Bump version to 2.13.0-rc1 for RC process #3670
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
| # Roughly based off of https://mozilla.github.io/cargo-vet/configuring-ci.html | |
| name: cargo vet | |
| on: | |
| push: | |
| branches: ["develop", "release/**"] | |
| pull_request: | |
| types: ["opened", "synchronize"] | |
| merge_group: | |
| jobs: | |
| cargo-vet: | |
| name: Vet Dependencies | |
| runs-on: ubuntu-latest | |
| # Keep version in sync with rust-toolchain.toml | |
| container: rust:1.90.0 | |
| env: | |
| CARGO_VET_VERSION: 0.10.0 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/cache@v4 | |
| id: cache-vet | |
| with: | |
| path: /usr/local/cargo/bin/cargo-vet | |
| key: cargo-vet-${{ env.CARGO_VET_VERSION }} | |
| - name: Install the cargo-vet binary, if needed | |
| if: ${{ steps.cache-vet.outputs.cache-hit != 'true' }} | |
| run: cargo install --version ${{ env.CARGO_VET_VERSION }} cargo-vet | |
| - name: Invoke cargo-vet | |
| run: cargo vet --locked |