Skip to content

Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.10.0 to 2.11.0 #2205

Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.10.0 to 2.11.0

Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.10.0 to 2.11.0 #2205

Workflow file for this run

name: Pull request workflow
on:
pull_request:
types: [ opened, synchronize, edited, reopened ]
branches:
- main
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: tart
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out code
uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Setup java
uses: actions/setup-java@v5
with:
distribution: 'adopt'
java-version: 21
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Generate cache key
run: ./scripts/checksum.sh ./ checksum.txt
- uses: actions/cache@v5
with:
path: |
~/.gradle/caches/modules-*
~/.gradle/caches/jars-*
~/.gradle/caches/build-cache-*
build-cache
key: gradle-${{ hashFiles('checksum.txt') }}
- name: Run Android checks
run: ./gradlew check --stacktrace
- name: Upload reports
uses: actions/upload-artifact@v7
if: failure()
with:
name: Reports
path: '**/build/reports/*'
retention-days: 2
ci:
name: CI
runs-on: ubuntu-latest
if: always()
needs:
- build
steps:
- run: |
if [[ "${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}" == "true" ]]; then
exit 1
fi