feat(leathercraft): ancient runic leather falconry glove bench, talon gauntlet, and raptor engine #425
Workflow file for this run
This file contains hidden or 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: Secret Scan | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| gitleaks: | |
| name: Gitleaks Security Scan | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Gitleaks | |
| run: | | |
| docker run --rm -v "$PWD:/repo" zricethezav/gitleaks:latest \ | |
| detect --source /repo --redact --no-banner | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |