From 6528125454719915c9d1ec942bc0d30a27769916 Mon Sep 17 00:00:00 2001 From: Fernando Gont Date: Fri, 31 Oct 2025 00:59:04 -0300 Subject: [PATCH] Add support for Semgrep scans --- .github/workflows/security-semgrep.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/security-semgrep.yml diff --git a/.github/workflows/security-semgrep.yml b/.github/workflows/security-semgrep.yml new file mode 100644 index 000000000..7436bc8da --- /dev/null +++ b/.github/workflows/security-semgrep.yml @@ -0,0 +1,15 @@ +name: Security - Semgrep Scan +permissions: + contents: read + +on: [push, pull_request] + +jobs: + semgrep: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: serve-robotics/actions/security/semgrep@v3 + with: + config: "auto"