From b19617f8c77de49d49b8cbdf5ea3626fb76ddb24 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 8 Dec 2022 01:40:36 +0530 Subject: [PATCH] feat(ci): configure CodeQL analysis --- .github/workflows/codeql_analysis.yml | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/codeql_analysis.yml diff --git a/.github/workflows/codeql_analysis.yml b/.github/workflows/codeql_analysis.yml new file mode 100644 index 00000000..ae9e7d14 --- /dev/null +++ b/.github/workflows/codeql_analysis.yml @@ -0,0 +1,30 @@ +name: "CodeQL" + +on: + push: + branches: + - main + schedule: + - cron: "20 3 * * 0" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: java + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:java"