build(deps): Bump quinn-proto from 0.11.6 to 0.11.8 #165
Workflow file for this run
This file contains 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: Lint | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "main" ] | |
schedule: | |
- cron: '41 20 * * 1' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
rust-clippy-analyze: | |
name: Run rust-clippy analyzing | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
run: rustup update stable && rustup default stable && rustup component add clippy | |
- name: Get cargo-binstall | |
run: | | |
curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz | tar -zxf - && mv cargo-binstall $HOME/.cargo/bin/ | |
- name: Install required cargo | |
run: cargo binstall --no-confirm --no-symlinks clippy-sarif sarif-fmt | |
- name: Cache builds | |
uses: Swatinem/rust-cache@v2.7.3 | |
- name: Run rust-clippy | |
run: | |
cargo clippy | |
--all-features | |
--all-targets | |
--message-format=json -- -D warnings | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt | |
continue-on-error: true | |
- name: Upload analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: rust-clippy-results.sarif | |
wait-for-processing: true | |
- name: Report status | |
run: cargo clippy --all-features --all-targets -- -D warnings | |
rustfmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: rustup install --profile minimal stable && rustup default stable && rustup component add rustfmt | |
- run: cargo fmt -- --check | |
cargo-deny: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
run: rustup update stable && rustup default stable && rustup component add clippy | |
- name: Get cargo-binstall | |
run: | | |
curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz | tar -zxf - && mv cargo-binstall $HOME/.cargo/bin/ | |
- name: Install required cargo addons | |
run: cargo binstall --no-confirm --no-symlinks cargo-deny | |
- run: cargo deny check | |
cargo-about: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
run: rustup update stable && rustup default stable && rustup component add clippy | |
- name: Get cargo-binstall | |
run: | | |
curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz | tar -zxf - && mv cargo-binstall $HOME/.cargo/bin/ | |
- name: Install required cargo addons | |
run: cargo binstall --no-confirm --no-symlinks cargo-about | |
- run: mkdir target && cargo about generate about.hbs > target/license.html |