Skip to content

docs: add uinaf banner to the readme #62

docs: add uinaf banner to the readme

docs: add uinaf banner to the readme #62

Workflow file for this run

name: Secret scanning
on:
pull_request:
workflow_call:
schedule:
- cron: "17 6 * * 1"
workflow_dispatch:
permissions:
contents: read
jobs:
gitleaks:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
fetch-depth: 0
- name: Run gitleaks
run: |
docker build --target gitleaks --tag workspace-gitleaks:ci .github/scanners
docker run --rm --network none -v "$PWD:/repo:ro" workspace-gitleaks:ci \
detect --source /repo --redact --no-banner --log-level error
trufflehog:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
fetch-depth: 0
- name: Run trufflehog
run: |
docker build --target trufflehog --tag workspace-trufflehog:ci .github/scanners
docker run --rm -v "$PWD:/repo:ro" workspace-trufflehog:ci \
git file:///repo --no-update --fail --results=verified