40e72ce37a
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
415 B
YAML
22 lines
415 B
YAML
name: ci-cargo-deny
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
cargo-deny:
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
matrix:
|
|
checks:
|
|
# - advisories
|
|
- licenses bans sources
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
|
with:
|
|
log-level: warn
|
|
command: check ${{ matrix.checks }}
|
|
argument: --all-features
|