Skip to content

Simon/feat/decrypt targeted message #12351

Simon/feat/decrypt targeted message

Simon/feat/decrypt targeted message #12351

Workflow file for this run

name: check license, sources
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-and-cache-rust
with:
rustflags: ''
- uses: taiki-e/install-action@41049aa56687c35e0afa74eed4f09cec4f9afabf # v2.85.2
with:
tool: cargo-deny@0.19
- name: "check licenses / supply chain"
run: |
cargo deny --all-features check >> $GITHUB_STEP_SUMMARY
- name: "build a dependency licenses inventory and post it to summary"
run: |
cargo deny --all-features list --layout crate --format json | jq -r 'to_entries[] | "* \(.key)", " * \(.value.licenses[])"' >> $GITHUB_STEP_SUMMARY