Bump tests/perf/s2n-quic from 112439c to dce0a3c (#4506)
#4440
This file contains hidden or 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
| # Copyright Kani Contributors | |
| # SPDX-License-Identifier: Apache-2.0 OR MIT | |
| # 1. Checks licenses for allowed license. | |
| # 2. Checks Rust-Sec registry for security advisories. | |
| name: Cargo Deny | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| # Run on changes to branches but not tags. | |
| branches: | |
| - '**' | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Install rustup | |
| run: ./scripts/setup/install_rustup.sh | |
| - uses: EmbarkStudios/cargo-deny-action@v2 | |
| with: | |
| arguments: --all-features --workspace | |
| command-arguments: -s |