Update rustls to version v0.22.4 #563
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: recursive | |
- run: bash sh_script/preparation.sh | |
- uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 # v1.6.3 | |
with: | |
command: check ${{ matrix.checks }} |