Update liquidity type in Tick and CurrentLiquidity #5624
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: cargo audit | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| - unlabeled | |
| - synchronize | |
| - opened | |
| concurrency: | |
| group: cargo-audit-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| cargo-audit: | |
| name: cargo audit | |
| runs-on: [self-hosted, type-ccx13] | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-cargo-audit') }} | |
| steps: | |
| - name: Check-out repositoroy under $GITHUB_WORKSPACE | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a apt-get update | |
| sudo DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a apt-get install -y --no-install-recommends -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" build-essential clang curl libssl-dev llvm libudev-dev protobuf-compiler pkg-config | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Utilize Shared Rust Cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: cargo-audit | |
| cache-on-failure: true | |
| - name: Install cargo-audit | |
| run: cargo install --force cargo-audit | |
| - name: Display cargo-audit --version | |
| run: cargo audit --version | |
| - name: cargo audit | |
| run: | | |
| cargo audit --ignore RUSTSEC-2023-0091 \ | |
| --ignore RUSTSEC-2024-0438 \ | |
| --ignore RUSTSEC-2025-0009 \ | |
| --ignore RUSTSEC-2025-0055 |