Skip to content

Bump actions/checkout from 6.0.2 to 6.0.3 #40

Bump actions/checkout from 6.0.2 to 6.0.3

Bump actions/checkout from 6.0.2 to 6.0.3 #40

Workflow file for this run

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 .