Browse Source

Delete .github/workflows/codeql.yml

MartinNYHC 3 months ago
parent
commit
a91a9eacbf
1 changed files with 0 additions and 46 deletions
  1. 0 46
      .github/workflows/codeql.yml

+ 0 - 46
.github/workflows/codeql.yml

@@ -1,46 +0,0 @@
-name: CodeQL
-
-on:
-  push:
-    branches: ['**']
-  pull_request:
-    branches: ['**']
-  schedule:
-    # Run weekly on Sunday at 3:00 UTC
-    - cron: '0 3 * * 0'
-
-# Cancel in-progress runs for the same branch
-concurrency:
-  group: ${{ github.workflow }}-${{ github.ref }}
-  cancel-in-progress: true
-
-permissions:
-  contents: read
-  security-events: write
-
-jobs:
-  analyze:
-    name: Analyze
-    runs-on: ubuntu-latest
-    strategy:
-      fail-fast: false
-      matrix:
-        language: ['javascript-typescript', 'python']
-    steps:
-      - name: Checkout repository
-        uses: actions/checkout@v4
-
-      - name: Initialize CodeQL
-        uses: github/codeql-action/init@v4
-        with:
-          languages: ${{ matrix.language }}
-          # Use default queries plus security-extended
-          queries: security-extended
-
-      - name: Autobuild
-        uses: github/codeql-action/autobuild@v4
-
-      - name: Perform CodeQL Analysis
-        uses: github/codeql-action/analyze@v4
-        with:
-          category: '/language:${{ matrix.language }}'