This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
CodeQL Advanced #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL Advanced" | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
schedule: | |
- cron: 0 19 * * 0 # Sunday 4am JST | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
packages: read | |
security-events: write | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
# https://github.com/timheuer/base64-to-file | |
- name: Set google-services.json | |
id: set_google_services | |
uses: timheuer/base64-to-file@v1.2 | |
with: | |
fileName: 'google-services.json' | |
fileDir: './app/' | |
encodedString: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
- name: Set keystore's file | |
id: set_keystore | |
uses: timheuer/base64-to-file@v1.2 | |
with: | |
fileName: 'release.jks' | |
fileDir: './' | |
encodedString: ${{ secrets.KEYSTORE }} | |
- uses: ./.github/actions/setup-java-runtime | |
# https://github.com/gradle/actions | |
- uses: gradle/actions/setup-gradle@v4 | |
- run: chmod +x gradlew | |
# https://github.com/github/codeql-action | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: java-kotlin | |
build-mode: manual | |
- name: Build manually | |
run: ./gradlew app:assembleRelease | |
env: | |
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} | |
KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
# https://github.com/github/codeql-action | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:java-kotlin" |