From de042f47899212d738f6d9d39c557d95e0403f83 Mon Sep 17 00:00:00 2001 From: Greg Baker Date: Mon, 23 Sep 2024 08:27:17 -0230 Subject: [PATCH] Disable all dynamic security tests Deleting `.github/workflows/dast.yml` since the tests performed within (ZAP scaning) is done in TeamCity. --- .github/workflows/dast.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/dast.yml diff --git a/.github/workflows/dast.yml b/.github/workflows/dast.yml deleted file mode 100644 index 2928272f..00000000 --- a/.github/workflows/dast.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Dynamic Application Security Tests - -on: - push: - branches: [main] - -defaults: - run: - working-directory: ./frontend - -jobs: - zap-proxy-scan: - name: ZAP Proxy Test - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Docker Build - run: docker build -t senior-journey . - env: - CI: true - - - name: Docker run - run: docker run -d -p 3000:3000 senior-journey - env: - CI: true - - - name: OWASP ZAP FULL Scan - uses: zaproxy/action-full-scan@v0.10.0 - with: - target: "http://localhost:3000" - fail_action: "false" - token: ${{ secrets.GITHUB_TOKEN }}