name: Code quality analysis on: push: branches: - main - renovate/** schedule: - cron: '31 7 * * 3' workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true permissions: contents: read security-events: write jobs: codeql: name: CodeQL runs-on: macos-14 steps: - name: Setup build environment uses: msfjarvis/compose-lobsters/.github/reusable-workflows/setup-gradle@main with: fetch-depth: 0 cache-read-only: true - name: Initialize CodeQL uses: github/codeql-action/init@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7 with: languages: java tools: latest queries: +security-extended - name: Build project shell: bash run: | ./gradlew assembleDebug assembleInternal - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7 with: category: "/language:java" mobsfscan: name: MobSF runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup python uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5 with: python-version: 3.8 - name: Run mobsfscan uses: MobSF/mobsfscan@25184ed98afa315d90f982d10a44e42c065dcebe with: args: . --sarif --output results.sarif || true - name: Upload mobsfscan report uses: github/codeql-action/upload-sarif@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7 with: sarif_file: results.sarif