From 6e904de420af33f2c91c08168cfac6508d8cc75a Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Sun, 22 Jun 2025 20:23:12 +0200 Subject: [PATCH] chore: scan actions with Code QL --- .github/workflows/code_ql.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/code_ql.yml diff --git a/.github/workflows/code_ql.yml b/.github/workflows/code_ql.yml new file mode 100644 index 00000000000..707822d15a3 --- /dev/null +++ b/.github/workflows/code_ql.yml @@ -0,0 +1,35 @@ +--- +name: code_ql + +'on': + workflow_dispatch: + push: + branches: + - master + pull_request: + schedule: + - cron: '10 7 * * 1' + +jobs: + analyze_actions: + name: Analyze Actions + runs-on: 'ubuntu-latest' + permissions: + actions: read + contents: read + security-events: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: 'actions' + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:actions" +...