2023-04-20 09:31:01 +00:00
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
|
|
|
|
env:
|
|
|
|
SENTRY_DSN: 'https://public_key@example.com/project_id'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-06-09 16:04:08 +00:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2023-04-20 09:31:01 +00:00
|
|
|
|
2023-05-27 22:11:27 +00:00
|
|
|
- name: Accept all SDK licenses
|
|
|
|
shell: bash
|
|
|
|
run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses
|
|
|
|
|
|
|
|
- name: Get build-tools directory
|
|
|
|
id: build-tools-path
|
|
|
|
shell: bash
|
2023-07-09 12:36:12 +00:00
|
|
|
run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0" >> "${GITHUB_OUTPUT}"
|
2023-05-27 22:11:27 +00:00
|
|
|
|
|
|
|
- name: Cache build-tools
|
2023-05-28 04:33:26 +00:00
|
|
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
2023-05-27 22:11:27 +00:00
|
|
|
with:
|
|
|
|
path: ${{ steps.build-tools-path.outputs.dir }}
|
2023-07-09 12:36:12 +00:00
|
|
|
key: ${{ runner.os }}-34.0.0
|
2023-05-27 22:11:27 +00:00
|
|
|
|
2023-04-20 09:31:01 +00:00
|
|
|
- name: Set up JDK
|
|
|
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 18
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2023-07-06 16:21:18 +00:00
|
|
|
uses: github/codeql-action/init@46ed16ded91731b2df79a2893d3aea8e9f03b5c4 # v2.20.3
|
2023-04-20 09:31:01 +00:00
|
|
|
with:
|
|
|
|
languages: java
|
|
|
|
tools: latest
|
|
|
|
queries: +security-extended
|
|
|
|
|
|
|
|
- name: Build project
|
2023-06-29 18:46:54 +00:00
|
|
|
uses: gradle/gradle-build-action@40b6781dcdec2762ad36556682ac74e31030cfe2 # v2.5.1
|
2023-04-20 09:31:01 +00:00
|
|
|
with:
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
cache-read-only: true
|
|
|
|
arguments: assembleNonFreeRelease
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2023-07-06 16:21:18 +00:00
|
|
|
uses: github/codeql-action/analyze@46ed16ded91731b2df79a2893d3aea8e9f03b5c4 # v2.20.3
|
2023-04-20 09:31:01 +00:00
|
|
|
with:
|
|
|
|
category: "/language:java"
|