mirror of
https://github.com/dani-garcia/vaultwarden.wiki.git
synced 2026-07-24 22:33:33 +00:00
a6a88e7929
- Updated API response to more closely match v2026.6.0+ server versions. - Updated all the crates - Updated Rust to v1.97.1 - Updated the web-vault to v2026.6.4 - Updated GitHub Actions 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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
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@bee27e3a4fd1ea2111cf90ab89cd076c870fce14 # v1.48.0
|