This repository was archived by the owner on May 12, 2026. It is now read-only.
Scan Action Logs #1508
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: Scan Action Logs | |
| on: | |
| schedule: | |
| - cron: "52 5 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| scan_run_logs: | |
| runs-on: ubuntu-latest | |
| name: Scan repo run logs | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Scan run logs | |
| uses: josiahsiegel/runleaks@4dd30d107c03b6ade87978e10c94a77015e488f9 | |
| ## DevSecOps - Aquia (Replace) - uses: ./.github/actions/runleaks | |
| id: scan | |
| with: | |
| github-token: ${{ secrets.RUNLEAKS_TOKEN }} | |
| run-limit: 300 | |
| min-days-old: 0 | |
| max-days-old: 1 | |
| patterns-path: ".github/runleaks/patterns.txt" | |
| exclusions-path: ".github/runleaks/exclusions.txt" | |
| fail-on-leak: false | |
| - name: Get scan exceptions | |
| if: steps.scan.outputs.count > 0 | |
| run: | | |
| echo "count=${{ steps.scan.outputs.count }}" | |
| exceptions='${{ steps.scan.outputs.exceptions }}' | |
| exceptions_out=$(echo ${exceptions//"%0A"/} | jq '.') | |
| printf "\n<details><summary>Exceptions</summary>\n\n\`\`\`json\\n$exceptions_out\\n\`\`\`\n</details>" >> $GITHUB_STEP_SUMMARY | |
| - name: Failure due to exceptions | |
| if: steps.scan.outputs.count > 0 | |
| run: exit 1 |