From a181752c2056b43310bc059807f97004333eae6a Mon Sep 17 00:00:00 2001 From: Styler Date: Sun, 21 Jun 2026 11:41:53 +0200 Subject: [PATCH] chore: remove CodeQL workflow (no longer in use) --- .github/workflows/codeql-analysis.yml | 38 --------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index eac60ed..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: [ main, master, development ] - pull_request: - branches: [ main, master, development ] - schedule: - - cron: '33 1 * * 0' - -jobs: - analyze: - name: Analyze - 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@v2 - - - name: Configure npm for private packages - run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc - - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1