chore(deps): update github/codeql-action digest to 54b1c84 #3450
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: PR | |
| on: | |
| pull_request: | |
| branches: [ master, main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 | |
| with: | |
| java-version: '8' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@54b1c84213ea9eb9171e2b582ff91d53078adecf | |
| with: | |
| languages: java | |
| - name: Cache local Maven repository | |
| uses: actions/cache@36f1e144e1c8edb0a652766b484448563d8baf46 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Verify with Maven | |
| run: mvn --batch-mode --update-snapshots --activate-profiles e2e verify | |
| - name: Upload coverage to Codecov | |
| uses: codecov/[email protected] | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
| flags: unittests # optional | |
| name: coverage # optional | |
| fail_ci_if_error: true # optional (default = false) | |
| verbose: true # optional (default = false) | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@54b1c84213ea9eb9171e2b582ff91d53078adecf |