Bump actions/checkout from 6.0.2 to 6.0.3 #40
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: Public Security Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| audit-and-secret-scan: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install scan helpers | |
| run: sudo apt-get update && sudo apt-get install -y ripgrep | |
| - name: Run public audit | |
| run: bash ./tools/public_repo_audit.sh --root . | |
| - name: Run tracked-file secret scan | |
| run: bash ./tools/public_repo_secret_scan.sh --root . | |
| - name: Run git-history scan | |
| run: bash ./tools/public_repo_history_scan.sh --root . |