fix(audio): fix request_format for Albert integration (#665) #2668
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 scanning | |
| on: | |
| push: | |
| pull_request: | |
| workflow_call: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Secret Scanning with TruffleHog | |
| uses: trufflesecurity/trufflehog@main | |
| with: | |
| extra_args: | | |
| --results=verified,unknown | |
| --exclude-detectors=Postgres | |
| - name: Install git-secrets | |
| run: | | |
| git clone https://github.com/awslabs/git-secrets.git | |
| cd git-secrets | |
| sudo make install | |
| - name: Setup git-secrets | |
| run: | | |
| git secrets --install | |
| git secrets --add 'api.key.{1,5}[a-zA-Z0-9_-]{32,}' | |
| - name: Scan with git-secrets | |
| run: | | |
| git secrets --scan |