fix(wallet): Don't fail in build_fee_bump for missing parent txid
#378
Workflow file for this run
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: Zizmor Actions Analysis | |
| # Analyzes GitHub Actions workflows for security vulnerabilities using zizmor. | |
| # Runs on pushes to master and all pull requests to detect potential security issues | |
| # in workflow configurations. Results are uploaded to GitHub's security dashboard. | |
| # The .github/zizmor.yml file configures the rules this action will check against. | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| zizmor: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Rust Cache | |
| uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 | |
| - name: Install zizmor | |
| run: cargo install zizmor --locked --version 1.6.0 | |
| - name: Run zizmor 🌈 | |
| run: zizmor --format sarif . > results.sarif | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload SARIF file | |
| uses: github/codeql-action/upload-sarif@v3 | |
| with: | |
| sarif_file: results.sarif | |
| category: zizmor |