From 6962b3fe0452606bde8cd7f18f9030472ceb8ac3 Mon Sep 17 00:00:00 2001 From: Nandan Prabhu Date: Mon, 9 Mar 2026 10:55:08 +0530 Subject: [PATCH 1/2] adds synk cli --- .github/workflows/sca_scan.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/sca_scan.yml diff --git a/.github/workflows/sca_scan.yml b/.github/workflows/sca_scan.yml new file mode 100644 index 0000000..8bef070 --- /dev/null +++ b/.github/workflows/sca_scan.yml @@ -0,0 +1,12 @@ +name: SCA + +on: + push: + branches: ["master", "main", "**"] + +jobs: + snyk-cli: + uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main + with: + additional-arguments: "--exclude=README.md,.jfrog" + secrets: inherit From 9053b7e8eb940d59feba3cbe4be77009991ae5e9 Mon Sep 17 00:00:00 2001 From: Nandan Prabhu Date: Mon, 16 Mar 2026 12:24:02 +0530 Subject: [PATCH 2/2] added push for all branches --- .github/workflows/sca_scan.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sca_scan.yml b/.github/workflows/sca_scan.yml index 8bef070..44e9f11 100644 --- a/.github/workflows/sca_scan.yml +++ b/.github/workflows/sca_scan.yml @@ -2,11 +2,12 @@ name: SCA on: push: - branches: ["master", "main", "**"] + branches: + - "**" jobs: snyk-cli: uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main with: - additional-arguments: "--exclude=README.md,.jfrog" + additional-arguments: "--exclude=README.md" secrets: inherit