Skip to content

chore(deps): Bump actions/checkout from 4.2.0 to 4.2.1 #284

chore(deps): Bump actions/checkout from 4.2.0 to 4.2.1

chore(deps): Bump actions/checkout from 4.2.0 to 4.2.1 #284

Workflow file for this run

name: Lint
on: [ push, pull_request ]
permissions:
contents: read
jobs:
cargo_fmt_clippy:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
crates.io:443
github.com:443
index.crates.io:443
static.crates.io:443
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Setup Rust toolchain
run: rustup show
- name: cargo fmt
run: cargo fmt -- --check
- name: cargo clippy
run: cargo clippy --all-features -- -D warnings