Bump bdk_kyoto patch release
          
            #13
        
      
  
    
      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: 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 |