Files
ChrisTitusTech_linutil/.github/workflows/typos.yml
T
Adam Perkowski d13a165eda fix(ci): various security vulnerabilities (#1108)
- fix potential code injection in `issue-slash-commands.yaml` by using
  single quotes insted of double, see
  https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html
- declare permissions for all workflows, see
  https://codeql.github.com/codeql-query-help/actions/actions-missing-workflow-permissions

Signed-off-by: Adam Perkowski <adas1per@protonmail.com>
2025-08-10 16:31:03 -05:00

19 lines
315 B
YAML

name: Check for typos
permissions:
contents: read
on:
[push, pull_request, workflow_dispatch]
jobs:
check-typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch origin ${{ github.base_ref }}
- name: Run spellcheck
uses: crate-ci/typos@v1.26.0