Bump cygwin/cygwin-install-action from 5f89bfcf835742910cafaa6a3cd7dc3624d5fef5 to f61179d72284ceddc397ed07ddb444d82bf9e559 #267
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spellcheck | |
on: | |
workflow_dispatch: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
spellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run spellcheck | |
uses: rojopolis/spellcheck-github-actions@403efe0642148e94ecb3515e89c767b85a32371a # 0.45.0 | |
with: | |
config_path: .github/spellcheck-settings.yml | |
task_name: Markdown | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install typos | |
uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 | |
with: | |
tool: typos | |
- name: Run typos | |
run: typos --config=.github/typos.toml |