fix(deps): update dependency androidx.compose:compose-bom to v2026.08.00 - autoclosed #40
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| schedule: | |
| - cron: "24 6 * * 3" | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| analyze-actions: | |
| name: Analyze GitHub Actions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository source code | |
| uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 | |
| with: | |
| languages: actions | |
| build-mode: none | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 | |
| analyze-java-kotlin: | |
| name: Analyze Java and Kotlin | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository source code | |
| uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5 | |
| with: | |
| java-version: "17" | |
| distribution: temurin | |
| cache: gradle | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 | |
| with: | |
| languages: java-kotlin | |
| build-mode: manual | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build application for analysis | |
| run: ./gradlew assembleDebug | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 |