From 611a0f00410e2272c9c67375a3c4292080f2caf5 Mon Sep 17 00:00:00 2001 From: Janusz Lisiecki Date: Mon, 8 Jun 2026 19:09:28 +0200 Subject: [PATCH] Add Secret scaning workflow - adds NVIDIA/security-workflows/.github/workflows/secret-scan-trufflehog.yml workflow Signed-off-by: Janusz Lisiecki --- .github/workflows/security.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/security.yml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 00000000000..9c65fd49622 --- /dev/null +++ b/.github/workflows/security.yml @@ -0,0 +1,22 @@ +name: Secret Scan + +on: + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + security: + runs-on: ubuntu-latest + steps: + - uses: NVIDIA/security-workflows/.github/actions/secret-scan-trufflehog@d7945f4856b8f3f285c75abbc2af3054d5b28e1e + with: + fetch-depth: 0 + + # Optional overrides — see the workflow file for the full interface: + # with: + # runs-on: linux-amd64-cpu4 # nv-gha-runners label + # extra-args: "--results=verified,unknown" + # fail-on-findings: false # warn-only during initial rollout