From e1283d95e8fd7d8edd8d59918af9f40c0fd240e2 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Wed, 13 Apr 2022 16:19:51 +0100 Subject: [PATCH] Replace SAST with DeepSource --- .deepsource.toml | 2 +- .github/workflows/sast.yml | 19 ------------------- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 .github/workflows/sast.yml diff --git a/.deepsource.toml b/.deepsource.toml index ae63ff5..a6a6de4 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -5,4 +5,4 @@ name = "go" enabled = true [analyzers.meta] - import_root = "gitlab.com/luketainton/iPilot" \ No newline at end of file + import_root = "github.com/luketainton/iPilot" \ No newline at end of file diff --git a/.github/workflows/sast.yml b/.github/workflows/sast.yml deleted file mode 100644 index 8e21c8e..0000000 --- a/.github/workflows/sast.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: SAST Scan -on: - push: - pull_request: - branches: [ main ] - -jobs: - scan: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: AppThreat/sast-scan-action@1.0.2 - with: - output: reports - type: go - - uses: actions/upload-artifact@v1 - with: - name: sast-scan-reports - path: reports