From dd4250cc36b1bf582082f80f06172c2a65a95561 Mon Sep 17 00:00:00 2001 From: offa <8887756+offa@users.noreply.github.com> Date: Thu, 12 Mar 2026 13:22:25 +0100 Subject: [PATCH] Add CodeQL check --- .github/workflows/codeql.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..8cfc3a7 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,29 @@ +name: codeql + +on: + schedule: + - cron: '0 5 * * 3' + push: + branches: + - main + pull_request: + +permissions: + contents: read + pull-requests: read + security-events: write + +jobs: + codeql: + runs-on: ubuntu-latest + name: "CodeQL" + steps: + - name: Checkout + uses: actions/checkout@main + - name: CodeQL Initialization + uses: github/codeql-action/init@v4 + with: + languages: actions + build-mode: none + - name: CodeQL Analysis + uses: github/codeql-action/analyze@v4