Support TDX_03
identity and sync policy data from backend server
#546
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cargo-deny | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
cargo-deny: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
checks: | |
- advisories | |
- sources | |
- bans | |
# Prevent sudden announcement of a new advisory from failing ci: | |
continue-on-error: ${{ matrix.checks == 'sources' }} | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
submodules: recursive | |
- run: bash sh_script/preparation.sh | |
- uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 # v1.6.3 | |
with: | |
command: check ${{ matrix.checks }} |