mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-06 20:38:51 +03:00
5cc7360816
Updated all the crates including two which reported a possible CVE Updated Typos Signed-off-by: BlackDex <black.dex@gmail.com>
27 lines
733 B
YAML
27 lines
733 B
YAML
name: Code Spell Checking
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
typos:
|
|
name: Run typos spell checking
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
# Checkout the repo
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
# End Checkout the repo
|
|
|
|
# When this version is updated, do not forget to update this in `.pre-commit-config.yaml` too
|
|
- name: Spell Check Repo
|
|
uses: crate-ci/typos@7c572958218557a3272c2d6719629443b5cc26fd # v1.45.2
|