Skip to content

Update version to 0.10.0-rc1 #354

Update version to 0.10.0-rc1

Update version to 0.10.0-rc1 #354

Workflow file for this run

# Roughly based off of https://mozilla.github.io/cargo-vet/configuring-ci.html
name: cargo vet
on: [push, pull_request]
# Only build for latest push/PR unless it's main or release/
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && !startsWith( github.ref, 'refs/heads/release/' ) }}
jobs:
cargo-vet:
name: Vet Dependencies
runs-on: ubuntu-latest
# Keep version in sync with rust-toolchain.toml
container: rust:1.74.1
env:
CARGO_VET_VERSION: 0.9.0
steps:
- uses: actions/checkout@v4
- 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