deps(deps): bump rustls from 0.23.42 to 0.23.43 in the rust-patch group across 1 directory #894
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: readme-stats-sync | |
| # README headline numbers (module count, LoC, unit-test count) must stay | |
| # in sync with the codebase. scripts/update-readme-stats.sh is the SSOT | |
| # for how they are computed; this workflow runs it in --check mode on | |
| # every PR and on every push to master. Drift = build red. | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 | |
| - name: Verify README stats SSOT | |
| run: bash scripts/update-readme-stats.sh --check |