Update dependency gradle to v8.12 #508
Workflow file for this run
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: Run Gradle on Pushes on Main an Pull Requests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
gradle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 21 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3-beta | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Execute Gradle assemble | |
run: ./gradlew assemble --scan --warning-mode all | |
- name: Execute Gradle check | |
run: ./gradlew check --scan --warning-mode all | |
- name: Execute Gradle sonarqube | |
run: ./gradlew sonar -Dsonar.token=${{ secrets.SONAR_TOKEN }} --scan --warning-mode all |