Skip to content

chore(deps): bump mongodb from 2.7.1 to 2.8.0 (#207) #212

chore(deps): bump mongodb from 2.7.1 to 2.8.0 (#207)

chore(deps): bump mongodb from 2.7.1 to 2.8.0 (#207) #212

Workflow file for this run

on:
push:
branches:
- main
name: sarif
jobs:
upload-sarif:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v2
name: Checkout 🛎️
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain 🛎️
with:
components: clippy
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- run: cargo install --locked clippy-sarif
name: Install clippy-sarif 🛎️
- run:
cargo clippy --all-targets --message-format=json | clippy-sarif > results.sarif
name: Run Clippy Lints 🔨
- uses: github/codeql-action/upload-sarif@v1
name: Upload SARIF file 🚀
with:
sarif_file: results.sarif