Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit d793af8

Browse files
fix: update versions and use gradlew test instead of buildPlugin
Signed-off-by: Matheus Ferreira <matheus.ferreira@zup.com.br>
1 parent 895c84a commit d793af8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/sonar-check-quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1414

1515
- name: Set up JDK 11
16-
uses: actions/setup-java@v1
16+
uses: actions/setup-java@v3
1717
with:
1818
java-version: 11
1919

2020
- name: Cache SonarQube packages
21-
uses: actions/cache@v1
21+
uses: actions/cache@v3
2222
with:
2323
path: ~/.sonar/cache
2424
key: ${{ runner.os }}-sonar
2525
restore-keys: ${{ runner.os }}-sonar
2626

2727
- name: Cache Gradle packages
28-
uses: actions/cache@v1
28+
uses: actions/cache@v3
2929
with:
3030
path: ~/.gradle/caches
3131
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
@@ -36,4 +36,4 @@ jobs:
3636
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} # Needed to get PR information, if any
3737
SONAR_TOKEN: ${{ secrets.SONAR_IDE_PIPELINE_TOKEN }}
3838
SONAR_HOST_URL: ${{ secrets.SONAR_PIPELINES_HOST_URL }}
39-
run: ./gradlew buildPlugin sonarqube --info
39+
run: ./gradlew test sonarqube

0 commit comments

Comments
 (0)