Skip to content

chore(deps): update pre-commit hook streetsidesoftware/cspell-cli to v8.17.0 #12

chore(deps): update pre-commit hook streetsidesoftware/cspell-cli to v8.17.0

chore(deps): update pre-commit hook streetsidesoftware/cspell-cli to v8.17.0 #12

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Security
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
secret-scan:
name: Run TruffleHog Secret Scan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Run TruffleHog Secret Scanning
uses: trufflesecurity/trufflehog@35943b41905eb1195f021955da17c233ed555e24 # v3.84.2
with:
path: ./
base: ${{ github.event.repository.default_branch }}
- name: Post results if secrets found
if: failure() # If the previous step fails (i.e., secrets found)
run: echo "❌ Secrets detected! Please review the findings and remove any secrets before merging."