Update codecov/codecov-action digest to 015f24e #5069
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: | |
| - main | |
| - 'releases/**' | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: | |
| - main | |
| - 'releases/**' | |
| schedule: | |
| - cron: '0 19 * * 3' | |
| permissions: read-all | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: | |
| - java | |
| - javascript | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| tools: linked | |
| - name: Build | |
| uses: ./.github/actions/run-gradle | |
| with: | |
| encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
| arguments: | | |
| --no-build-cache \ | |
| -Dscan.tag.CodeQL \ | |
| allMainClasses | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3 |