Skip to content

chore(deps): bump indexmap from 2.10.0 to 2.11.4 #599

chore(deps): bump indexmap from 2.10.0 to 2.11.4

chore(deps): bump indexmap from 2.10.0 to 2.11.4 #599

name: Rust Security Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 3 * * 1'
jobs:
cargo_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache cargo-audit
uses: actions/cache@v4
with:
path: ~/.cargo/bin/cargo-audit
key: cargo-audit-${{ runner.os }}-v0.21.2
- name: Install cargo audit
run: |
if ! command -v cargo-audit &> /dev/null; then
cargo install cargo-audit
fi
- name: Run Cargo Audit
run: cargo audit
continue-on-error: true