Skip to content

Bump tailwindcss from 3.4.11 to 3.4.13 #923

Bump tailwindcss from 3.4.11 to 3.4.13

Bump tailwindcss from 3.4.11 to 3.4.13 #923

Workflow file for this run

name: πŸ‘“ Scan
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '00 16 * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
clippy:
name: πŸ“Ž Run clippy
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: πŸ¦€ Install Rust toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: πŸ“¦ Install required cargo
run: cargo install clippy-sarif sarif-fmt
- name: πŸ“Ž Run clippy
run:
cargo clippy
--all-features
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
- name: ⬆️ Upload results
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true