From 9f73db75621762a72565c9f82d8ebb362de93d77 Mon Sep 17 00:00:00 2001 From: Ron Izraeli Date: Tue, 15 Mar 2022 14:35:16 +0200 Subject: [PATCH] Integrate SourceGuard Code Analysis --- .github/workflows/sourceguard.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/sourceguard.yml diff --git a/.github/workflows/sourceguard.yml b/.github/workflows/sourceguard.yml new file mode 100644 index 0000000..cd3e727 --- /dev/null +++ b/.github/workflows/sourceguard.yml @@ -0,0 +1,13 @@ +name: SourceGuard Code Analysis +on: [push] +jobs: + code-analysis: + runs-on: ubuntu-latest + container: + image: sourceguard/sourceguard-cli + steps: + - name: Scan + uses: CheckPointSW/sourceguard-action@main + with: + SG_CLIENT_ID: ${{ secrets.SG_CLIENT_ID }} + SG_SECRET_KEY: ${{ secrets.SG_SECRET_KEY }}