Update L1Tx ref types to include multiple proto ops per tx (#618) #2351
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: Security | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
permissions: {} | |
jobs: | |
supply-chain: | |
name: Run `cargo-audit` | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: dtolnay/rust-toolchain@clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: Install cargo-audit | |
run: cargo install cargo-audit --force --locked | |
# HACK: not denying warnings as we depend on `yaml-rust` via `format-serde-error` which is unmaintained | |
- name: Check for audit warnings | |
run: cargo audit -D warnings | |
continue-on-error: true | |
# HACK: re-run without denying warnings so that we don't miss any vulnerabilities | |
- name: Check for vulnerabilities | |
run: cargo audit |