From 14d5da9ad9fd04c9667ea12617f7e1f53a0526f6 Mon Sep 17 00:00:00 2001 From: junghanlee <73509756+junghanlee@users.noreply.github.com> Date: Fri, 26 Feb 2021 15:33:51 +0900 Subject: [PATCH] SC-422 Apply security scan. --- .github/workflows/slscan.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/slscan.yml diff --git a/.github/workflows/slscan.yml b/.github/workflows/slscan.yml new file mode 100644 index 0000000..8beda00 --- /dev/null +++ b/.github/workflows/slscan.yml @@ -0,0 +1,23 @@ +name: SL Scan + +on: push + +jobs: + NextGen-Static-Analysis: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Perform Scan + uses: ShiftLeftSecurity/scan-action@master + env: + WORKSPACE: "" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCAN_AUTO_BUILD: true + with: + output: reports + + - name: Upload report + uses: actions/upload-artifact@v2 + with: + name: shiftleft-scan-reports + path: reports