Skip to content

chore(deps): bump borsh from 1.5.3 to 1.5.5 (#53) #126

chore(deps): bump borsh from 1.5.3 to 1.5.5 (#53)

chore(deps): bump borsh from 1.5.3 to 1.5.5 (#53) #126

Workflow file for this run

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
- name: Check for audit warnings
run: cargo audit -D warnings
continue-on-error: true
- name: Check for vulnerabilities
run: cargo audit