Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cargo vet regenerate #190

Merged
merged 2 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,21 +74,20 @@ jobs:
name: Vet Dependencies
runs-on: ubuntu-20.04-16core
env:
# there is no published release for v0.7 yet, build from git revision
CARGO_VET_REVISION: 8c8b6d7a5237544c613de616a031586587f49a42
CARGO_VET_VERSION: 0.9.1
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v3
with:
path: ${{ runner.tool_cache }}/cargo-vet
key: cargo-vet-bin-${{ env.CARGO_VET_REVISION }}
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
# build from source, as are not published binaries yet :(
# tracked in https://github.com/mozilla/cargo-vet/issues/484
run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --git https://github.com/mozilla/cargo-vet.git --rev ${{ env.CARGO_VET_REVISION }} cargo-vet
run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet
- name: Invoke cargo-vet
run: |
cargo vet --locked
Expand Down
4 changes: 2 additions & 2 deletions supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ end = "2024-06-08"

[[trusted.bytes]]
criteria = "safe-to-deploy"
user-id = 6741
user-id = 6741 # Alice Ryhl (Darksonn)
start = "2021-01-11"
end = "2024-06-08"

Expand Down Expand Up @@ -131,7 +131,7 @@ end = "2024-06-08"

[[trusted.num_cpus]]
criteria = "safe-to-deploy"
user-id = 359 # Sean McArthur (seanmonstar)
user-id = 359
start = "2019-06-10"
end = "2024-06-08"

Expand Down
Loading
Loading