From d577e3bc9af6af919733e6b3140f6b17b1cb8cd8 Mon Sep 17 00:00:00 2001 From: kartikksrivastava Date: Thu, 10 Oct 2024 12:51:20 +0530 Subject: [PATCH] chore: enable github advanced security workflow This PR enable github advanced security workflow Ticket: DO-8117 --- .github/workflows/codeql.yaml | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/codeql.yaml diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml new file mode 100644 index 0000000..b30dcb0 --- /dev/null +++ b/.github/workflows/codeql.yaml @@ -0,0 +1,44 @@ +name: "Advanced Security CodeQL Scan" + +on: + push: + branches: ["master"] + pull_request: + branches: ["master"] + schedule: + - cron: "43 11 * * 5" + +jobs: + analyze: + name: Analyze + runs-on: "ubuntu-latest-4-cores" + timeout-minutes: 30 + permissions: + security-events: write + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + language: ["javascript-typescript"] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + continue-on-error: true + with: + ref: ${{ github.sha }} + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + continue-on-error: true + with: + languages: ${{ matrix.language }} + queries: security-extended,security-and-quality + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + continue-on-error: true + with: + category: "/language:${{matrix.language}}"