chore(deps): Bump github/codeql-action from 3.25.8 to 3.26.2 #866
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" | |
permissions: {} | |
on: | |
pull_request: | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
cargo-fmt: | |
name: "cargo fmt" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: toolchain | |
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a # doesn't have usual versioned releases/tags | |
with: | |
toolchain: stable | |
components: rustfmt # minimal profile does not include it | |
- run: cargo +${{ steps.toolchain.outputs.name }} fmt --all --check | |
cargo-clippy: | |
name: "cargo clippy" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: toolchain | |
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a # doesn't have usual versioned releases/tags | |
with: | |
toolchain: stable | |
components: clippy # minimal profile does not include it | |
- run: cargo +${{ steps.toolchain.outputs.name }} clippy --all-targets --all-features | |
cargo-rustdoc-clippy: | |
name: "cargo rustdoc-clippy" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: toolchain | |
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a # doesn't have usual versioned releases/tags | |
with: | |
toolchain: nightly | |
components: clippy # minimal profile does not include it | |
# dependency of cargo-rustdoc-clippy | |
- run: | | |
sudo apt-get update | |
sudo apt-get install zsh | |
# https://github.com/rust-lang/rust/issues/56232#issuecomment-1248359946 | |
- run: | | |
curl --output ~/.cargo/bin/cargo-rustdoc-clippy https://raw.githubusercontent.com/Nemo157/dotfiles/e6daf083068ff17d14b19dc2569ae62ea86bf23c/bin/cargo-rustdoc-clippy | |
chmod +x ~/.cargo/bin/cargo-rustdoc-clippy | |
- run: cargo +${{ steps.toolchain.outputs.name }} rustdoc-clippy --all-features |