fix: update sync example to use the p2p_context in side node #431
Workflow file for this run
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
| name: Dependency security audit | |
| on: | |
| push: | |
| paths: | |
| - "**/Cargo.toml" | |
| - "Cargo.lock" | |
| - "deny.toml" | |
| - ".github/workflows/dependency-audit.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| RUSTFLAGS: "-Dwarnings -C debuginfo=0" | |
| jobs: | |
| security_audit: | |
| timeout-minutes: 20 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache cargo registry and target | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Install `cargo-deny` | |
| run: cargo install cargo-deny@0.19.0 | |
| - name: Run `cargo-deny` audit | |
| run: cargo deny check |