Skip to content

feat!: canonicalize ClientId keeping only the regular version where t… #1940

feat!: canonicalize ClientId keeping only the regular version where t…

feat!: canonicalize ClientId keeping only the regular version where t… #1940

Workflow file for this run

name: Check License, sources
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [ push ]
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: taiki-e/install-action@cargo-deny
- name: "Check Licenses / Supply Chain"
run: |
echo "`$(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