diff --git a/.github/workflows/run-checks.yaml b/.github/workflows/run-checks.yaml index dcb50cb..7d274d3 100644 --- a/.github/workflows/run-checks.yaml +++ b/.github/workflows/run-checks.yaml @@ -5,6 +5,9 @@ on: branches: - main +permissions: + contents: read + jobs: run-checks: runs-on: ubuntu-latest @@ -13,6 +16,11 @@ jobs: contents: read steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@v2 + with: + egress-policy: audit + - name: Checkout Repository uses: actions/checkout@v5 with: