From 4a7922a3f59a4307d711da50c19795efd80b6279 Mon Sep 17 00:00:00 2001 From: offa Date: Thu, 15 May 2025 16:46:03 +0200 Subject: [PATCH] Enable CodeQL actions scan --- .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..eb580ad --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,29 @@ +name: codeql + +on: + schedule: + - cron: '0 5 * * 3' + push: + branches: + - master + 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@v3 + with: + languages: actions + build-mode: none + - name: CodeQL Analysis + uses: github/codeql-action/analyze@v3