ci(deps)(deps): bump github/codeql-action/init from 4.37.3 to 4.37.4 #122
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 | |
| # Static security analysis via GitHub CodeQL. | |
| # Runs on push/PR to main and weekly to catch newly-published CVEs. | |
| # Only the starter module is analysed; the sample application is excluded | |
| # because it requires external Embabel snapshot artifacts. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 9 * * 1' | |
| permissions: | |
| contents: read | |
| security-events: write | |
| actions: read | |
| jobs: | |
| analyze: | |
| name: Analyze Java (CodeQL) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| cache: maven | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4 | |
| with: | |
| languages: java | |
| queries: security-extended | |
| - name: Install parent POM | |
| run: mvn -N install -q | |
| - name: Build starter for CodeQL | |
| run: mvn -B -DskipTests compile -pl embabel-workflow-visualizer-starter | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4 | |
| with: | |
| category: /language:java |