From 68d18e765fb3f77afa0e956a523795f9af54d7e6 Mon Sep 17 00:00:00 2001 From: Shailesh Mishra Date: Tue, 12 Sep 2023 19:10:24 +0530 Subject: [PATCH] removed SAST file --- .github/workflows/sast-scan.yml | 11 ----------- .github/workflows/sca-scan.yml | 23 ----------------------- global.json | 2 +- 3 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 .github/workflows/sast-scan.yml delete mode 100644 .github/workflows/sca-scan.yml diff --git a/.github/workflows/sast-scan.yml b/.github/workflows/sast-scan.yml deleted file mode 100644 index f931630..0000000 --- a/.github/workflows/sast-scan.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: SAST Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Horusec Scan - run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd) \ No newline at end of file diff --git a/.github/workflows/sca-scan.yml b/.github/workflows/sca-scan.yml deleted file mode 100644 index b11e368..0000000 --- a/.github/workflows/sca-scan.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Source Composition Analysis Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@master - - name: Setup .NET Core @ Latest - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '3.1.x' - - name: Run Dotnet Restore - run: | - dotnet restore - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/dotnet@master - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - with: - args: --file=Contentstack.Core/obj/project.assets.json --fail-on=all diff --git a/global.json b/global.json index d8f262e..79893f3 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "7.0.400" + "version": "3.1.404" } }