Bump org.sonarsource.analyzer-commons:sonar-analyzer-commons from 2.5.0.1358 to 2.7.0.1482 #501
This file contains 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: QA | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.event.repository.full_name | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '' | |
- run: | | |
git fetch --prune --unshallow | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: SonarCloud Scan | |
run: ./gradlew check sonar | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |