From 34aedc4fd09976cfb2e91b26a62d3f5b96fafed3 Mon Sep 17 00:00:00 2001 From: Aleksandr Gerasimov Date: Mon, 5 Aug 2024 14:34:48 +0300 Subject: [PATCH] Add Security Workflow --- .github/workflows/security.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/security.yaml diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml new file mode 100644 index 0000000..4593027 --- /dev/null +++ b/.github/workflows/security.yaml @@ -0,0 +1,14 @@ +name: Security Testing + +on: + workflow_dispatch: + pull_request: + types: [ opened, synchronize ] + +jobs: + sast: + uses: p2p-org/security-workflows/.github/workflows/sast.yaml@main + secrets: inherit + sca: + uses: p2p-org/security-workflows/.github/workflows/sca.yaml@main + secrets: inherit