From 6913e3d6c8508acb83d4d0286316cc344dc9247d Mon Sep 17 00:00:00 2001 From: Andrea Amorosi Date: Mon, 8 Jul 2024 09:43:42 +0200 Subject: [PATCH] Revert "chore(ci): enable CodeQl (#2731)" This reverts commit d76eb1d3d1569bd4675f2ff74c909b5b3976e232. --- .github/workflows/codeql.yml | 51 ------------------------------------ 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 71c7931153..0000000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - schedule: - - cron: "0 0 * * 1" - -permissions: - contents: read - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ["typescript"] - - steps: - - name: Checkout code - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0 - with: - languages: ${{ matrix.language }} - - - name: Setup NodeJS - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 - with: - node-version: ${{ matrix.version }} - cache: "npm" - - name: Setup dependencies - uses: ./.github/actions/cached-node-modules - with: - nodeVersion: 20 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0 - with: - category: "/language:${{matrix.language}}"