[Tech] Bump the non-major-dependencies group across 1 directory with 22 updates #945
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: Code QL | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: CodeQL | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'java-kotlin', 'python', 'javascript-typescript' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Setup Java JDK | |
| if: matrix.language == 'java-kotlin' | |
| uses: actions/[email protected] | |
| with: | |
| distribution: zulu | |
| java-version: 21 | |
| - name: Build project | |
| if: matrix.language == 'java-kotlin' | |
| run: ./gradlew build -x test -x ktlintCheck -x runKtlintCheckOverMainSourceSet -x runKtlintCheckOverTestSourceSet --no-daemon -Dorg.gradle.jvmargs="-Xmx2g" | |
| working-directory: ./backend | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |