fix(deps): update dependency io.sentry:sentry-bom to v8.28.0 #5729
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: | |
| push: | |
| branches: | |
| - main | |
| - renovate/** | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| if: "github.event.pull_request.draft == false" | |
| runs-on: macos-15 | |
| steps: | |
| - name: Setup build environment | |
| uses: msfjarvis/compose-lobsters/.github/reusable-workflows/setup-gradle@main | |
| with: | |
| fetch-depth: 0 | |
| cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
| dependency-graph: generate-and-submit | |
| - name: Check changelog format | |
| uses: mindsers/changelog-reader-action@32aa5b4c155d76c94e4ec883a223c947b2f02656 # v2.2.3 | |
| with: | |
| path: ./CHANGELOG.md | |
| validation_level: error | |
| - name: Run unit tests | |
| run: ./gradlew --no-configuration-cache --stacktrace :build-logic:check check -PslimTests | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: (Fail-only) Upload test report | |
| if: failure() | |
| uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 | |
| with: | |
| name: Test report | |
| path: '**/build/reports/tests/**' | |
| dependency-review: | |
| runs-on: macos-15 | |
| if: "github.event_name == 'push' && github.event.ref != 'refs/heads/main'" | |
| needs: | |
| - check | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4 | |
| with: | |
| base-ref: refs/heads/main | |
| head-ref: ${{ github.ref }} |