Skip to content

Bump bdk_kyoto patch release #13

Bump bdk_kyoto patch release

Bump bdk_kyoto patch release #13

Workflow file for this run

name: Rust Dependency Audit
# Performs a security audit of Rust dependencies using cargo-audit.
# Runs weekly on schedule and when Cargo.toml/Cargo.lock files are modified.
# Helps identify known security vulnerabilities in the dependency tree.
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
- cron: '0 0 * * 0' # Once per week
jobs:
security-audit:
name: "Security audit"
runs-on: ubuntu-24.04
defaults:
run:
working-directory: bdk-ffi
steps:
- name: "Check out PR branch"
uses: actions/checkout@v4
with:
persist-credentials: false
- name: "Run audit"
run: |
cargo install cargo-audit
cargo-audit audit