Skip to content

Update xr

Update xr #1063

Workflow file for this run

name: Danger Checks
# This will cancel any in progress workflows for the same PR, if
# multiple pushes happen in quick succession.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on: pull_request
jobs:
danger:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup
uses: ./.github/actions/workflow_setup
- name: Dependency Updates
run: ./gradlew dependencyUpdates --no-parallel
- name: Danger Checks
uses: danger/kotlin@1.3.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}