ci(deps): update dtolnay/rust-toolchain digest to 7b1c307 #679
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: Clippy check | |
on: | |
push: | |
branches: ["**"] | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
permissions: {} | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # master | |
with: | |
toolchain: stable | |
components: clippy | |
- id: rustc | |
uses: ./.github/actions/rust-info | |
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3 | |
with: | |
key: ${{ steps.rustc.outputs.host }} | |
- name: Run Clippy | |
run: cargo clippy --all-targets --all-features |