From 614e9ef7b7d86d2d96220cc7d40a6ee3acf2c23e Mon Sep 17 00:00:00 2001 From: Jeffrey von Rotz Date: Mon, 2 Mar 2026 11:17:44 +0000 Subject: [PATCH] chore: remove legacy codeql.yml (ADR-011 GHAS migration) --- .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 9956dec..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: "CodeQL Security Analysis" - -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - # Run weekly on Monday at 6 AM UTC - - cron: '0 6 * * 1' - -jobs: - analyze: - name: Analyze Code - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ['javascript'] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - queries: security-extended # More thorough than default - - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}"