From a709bc5a2f43c2e663c7bc71b881be89d4ec7b6b Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Thu, 20 Aug 2026 19:23:54 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20remove=20workflow=20CodeQL=20?= =?UTF-8?q?=E2=80=94=20default=20setup=20is=20enabled?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub rejects SARIF from advanced (workflow) configurations when default setup is enabled; default setup already scans every push. --- .github/workflows/codeql.yml | 27 --------------------------- 1 file changed, 27 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 de8070ec..00000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: codeql - -on: - push: - branches: [main] - pull_request: - schedule: - - cron: "0 0 * * 0" # weekly - -permissions: - actions: read - contents: read - security-events: write - -jobs: - analyze: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - language: [ruby] - steps: - - uses: actions/checkout@v7 - - uses: github/codeql-action/init@v4.37.3 - with: - languages: ${{ matrix.language }} - - uses: github/codeql-action/analyze@v4.37.3