Bump tools.jackson:jackson-bom from 3.1.3 to 3.1.4 #681
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: Build PR | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**.md' | |
| - '**.adoc' | |
| jobs: | |
| build: | |
| permissions: | |
| checks: write | |
| pull-requests: write | |
| contents: write | |
| runs-on: ubuntu-latest | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - uses: gradle/actions/setup-gradle@39e147cb9de83bb9910b8ef8bd7fff0ee20fcd6f | |
| - run: ./gradlew check | |
| - name: cache SonarCloud packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.sonar/cache | |
| key: ${{ runner.os }}-sonar | |
| restore-keys: ${{ runner.os }}-sonar | |
| - run: ./gradlew build jacocoTestReport sonar | |
| if: ${{ env.SONAR_TOKEN != '' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: modules-test-reports | |
| path: | | |
| modules/**/build/reports/tests/test/ | |
| plugins/**/build/reports/tests/test/ | |
| - name: Enable auto merge for Dependabot PRs | |
| run: | | |
| gh pr review --approve "${{ github.event.pull_request.html_url }}" | |
| gh pr merge --auto --rebase --delete-branch "${{ github.event.pull_request.html_url }}" | |
| if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - uses: gradle/actions/setup-gradle@39e147cb9de83bb9910b8ef8bd7fff0ee20fcd6f | |
| - run: ./gradlew check | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: windows-test-reports | |
| path: | | |
| modules/**/build/reports/tests/test/ | |
| plugins/**/build/reports/tests/test/ |