From 7cfd8079af91e57da40a18cb5ab29266b9d5bde7 Mon Sep 17 00:00:00 2001 From: Sam Tucker-Davis Date: Thu, 23 Apr 2026 01:37:35 +0000 Subject: [PATCH] ci: remove codeql.yml (no GHAS / code scanning disabled) --- .github/workflows/codeql.yml | 42 ------------------------------------ 1 file changed, 42 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 afa3ed2..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - schedule: - - cron: "17 4 * * 1" - workflow_dispatch: - -permissions: - security-events: write - packages: read - actions: read - contents: read - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - language: ["javascript-typescript"] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{ matrix.language }}"