fix(deps): raise fast-uri to patched 3.1.6 and re-scope the uuid override (+Claude) #23
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: Secrets Scan | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| secrets-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Run Talisman | |
| env: | |
| TALISMAN_VERSION: v1.37.0 | |
| # Pinned from https://github.com/thoughtworks/talisman/releases/download/v1.37.0/checksums - | |
| # committed here rather than fetched at runtime, since fetching the checksums file from the | |
| # same release as the binary it's meant to verify wouldn't catch a compromised release. | |
| TALISMAN_SHA256: 8e0ae8bb7b160bf10c4fa1448beb04a32a35e63505b3dddff74a092bccaaa7e4 | |
| run: | | |
| set -euo pipefail | |
| curl -fsSL -o talisman_linux_amd64 "https://github.com/thoughtworks/talisman/releases/download/${TALISMAN_VERSION}/talisman_linux_amd64" | |
| echo "${TALISMAN_SHA256} talisman_linux_amd64" | sha256sum -c - | |
| chmod +x talisman_linux_amd64 | |
| echo "refs/heads/${{ github.head_ref }} ${{ github.event.pull_request.head.sha }} refs/heads/${{ github.base_ref }} ${{ github.event.pull_request.base.sha }}" | ./talisman_linux_amd64 --githook pre-push | |
| - name: TruffleHog OSS | |
| uses: trufflesecurity/trufflehog@6f3c981e7b77f235fd2702dd74af25fc4b72bf11 # v3.96.0 | |
| with: | |
| path: ./ | |
| base: ${{ github.event.pull_request.base.sha }} | |
| head: ${{ github.event.pull_request.head.sha }} | |
| extra_args: --results=verified,unverified,unknown |