fix(deps): update io.sentry:sentry-bom to v7.17.0 #73
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: PR checks | |
on: | |
pull_request: | |
merge_group: | |
# Cancel in-progress/pending PR checks if a new commit is pushed to the branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
android-lint: | |
name: Android Lint | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up environment | |
uses: ./.github/actions/setup-environment | |
with: | |
gradle: true | |
- name: Decrypt secrets | |
env: | |
GPG_KEY: ${{ secrets.gpg_key }} | |
run: secrets/decrypt.sh | |
- name: Run Android Lint | |
run: scripts/run-android-lint.sh | |
licenses: | |
name: Validate licenses | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up environment | |
uses: ./.github/actions/setup-environment | |
with: | |
gradle: true | |
- name: Decrypt secrets | |
env: | |
GPG_KEY: ${{ secrets.gpg_key }} | |
run: secrets/decrypt.sh | |
- name: Validate licenses | |
run: scripts/run-license-checks.sh |