From 441999baf6b436e7b21793292fa4831a992051fd Mon Sep 17 00:00:00 2001 From: Amari Ellington Date: Mon, 29 Apr 2024 11:42:14 +0100 Subject: [PATCH] Added Semgrep Github Action to run weekly scan --- .github/workflows/semgrep.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/semgrep.yml diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml new file mode 100644 index 0000000..b134fef --- /dev/null +++ b/.github/workflows/semgrep.yml @@ -0,0 +1,10 @@ +name: Semgrep + +on: + workflow_dispatch: {} + schedule: + - cron: '50 5 * * 4' +jobs: + call-semgrep: + uses: trayio/semgrep-reusable-workflow/.github/workflows/semgrep.yml@main + secrets: inherit \ No newline at end of file