Get update from ckittask/RAG-Module wip_3_12 into rootccodelabs/RAG-Module RAG-217 #583
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: Gitleaks Check | |
| on: | |
| pull_request: | |
| branches: ["*"] | |
| push: | |
| branches: ["*"] | |
| jobs: | |
| gitleaks: | |
| name: Gitleaks Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run Gitleaks | |
| run: | | |
| docker run --rm -v ${{ github.workspace }}:/code zricethezav/gitleaks:latest detect --source=/code --redact --no-banner | |