Skip to content

Revert "feat: Do not lock the artifact-dir for check builds" (#16299) #4001

Revert "feat: Do not lock the artifact-dir for check builds" (#16299)

Revert "feat: Do not lock the artifact-dir for check builds" (#16299) #4001

Workflow file for this run

name: Security audit
permissions:
contents: read
on:
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
push:
branches:
- master
jobs:
cargo_deny:
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
steps:
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@v2
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
with:
command: check ${{ matrix.checks }}
rust-version: stable