35 lines
838 B
YAML
35 lines
838 B
YAML
name: secret-guardrails
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
artifact-secret-scan:
|
|
runs-on: [self-hosted, linux, x64, nomad, truenas-stacks]
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Make scanner executable
|
|
run: chmod +x scripts/scan-secret-bearing-artifacts.sh
|
|
|
|
- name: Scan all tracked infra artifacts for embedded secrets
|
|
run: scripts/scan-secret-bearing-artifacts.sh --tracked
|
|
|
|
gitleaks:
|
|
runs-on: [self-hosted, linux, x64, nomad, truenas-stacks]
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run gitleaks
|
|
uses: gitleaks/gitleaks-action@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|