chore(deps): bump the frontend-dependencies group across 1 directory with 11 updates #87
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", "main" ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ "master", "main" ] | |
| schedule: | |
| - cron: '37 20 * * 5' # Runs every Friday at 20:37 UTC | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'java', 'javascript' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Set up JDK 21 | |
| if: matrix.language == 'java' | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Set up Gradle | |
| if: matrix.language == 'java' | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Set up Node.js 22 | |
| if: matrix.language == 'java' | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| cache-dependency-path: eventlens-ui/package-lock.json | |
| - name: Build Java | |
| if: matrix.language == 'java' | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew build -x test --no-daemon | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:${{matrix.language}}" |