chore(deps): Bump the java group across 1 directory with 5 updates #13
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| types: [ opened, synchronize, reopened ] | |
| permissions: | |
| contents: read | |
| id-token: write | |
| env: | |
| MAVEN_INIT: 'false' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version-file: .java-version | |
| cache: maven | |
| - name: Run tests | |
| run: ./mvnw -V -B verify | |
| - name: Scan with SonarCloud | |
| if: github.repository == 'extenda/openapi-httpserver-java' | |
| uses: extenda/actions/sonar-scanner@v0 | |
| with: | |
| sonar-host: https://sonarcloud.io | |
| sonar-scanner: maven | |
| main-branch: master | |
| # Dependabot-triggered runs read the Dependabot secret store, where | |
| # SECRET_AUTH does not exist. Fall back to the Dependabot-scoped key | |
| # for those runs only. | |
| service-account-key: ${{ github.actor == 'dependabot[bot]' && secrets.DEPENDABOT_AUTH || secrets.SECRET_AUTH }} |