Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Bump actions/checkout from 6.0.0 to 6.0.1 (#149) #275

Bump actions/checkout from 6.0.0 to 6.0.1 (#149)

Bump actions/checkout from 6.0.0 to 6.0.1 (#149) #275

Workflow file for this run

name: Cargo vet dependencies
on:
push:
branches:
- main
pull_request:
jobs:
cargo-vet:
name: cargo_vet
runs-on: ubuntu-latest
env:
CARGO_VET_VERSION: 0.9.0
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ${{ runner.tool_cache }}/cargo-vet
key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}
- name: Add the tool cache directory to the search path
run: echo "${{ runner.tool_cache }}/cargo-vet/bin" >> $GITHUB_PATH
- name: Ensure that the tool cache is populated with the cargo-vet binary
run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet
- name: Invoke cargo-vet
run: cargo vet --locked