build(deps): bump org.sonarqube from 7.4.0.8496 to 7.5.0.8588 #6236
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: Java CI with Gradle | |
| on: | |
| push: | |
| branches: [ develop ] | |
| pull_request: | |
| branches: [ develop ] | |
| # Run unit tests on CF landscape: Ubuntu with various Bellsoft Liberica Java versions | |
| permissions: | |
| contents: read | |
| jobs: | |
| uaa_standalone_test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [ '25', '26' ] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v6 | |
| with: | |
| distribution: 'liberica' | |
| java-version: ${{ matrix.java }} | |
| cache: 'gradle' | |
| - run: ./gradlew --no-daemon -Dspring.profiles.active=hsqldb -DfailOnPassedAfterRetry=false --no-daemon test |