Skip to content

Bump com.android.tools.build:gradle from 8.4.1 to 8.4.2 #529

Bump com.android.tools.build:gradle from 8.4.1 to 8.4.2

Bump com.android.tools.build:gradle from 8.4.1 to 8.4.2 #529

Workflow file for this run

name: Pull request workflow
on:
pull_request:
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04
# 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@v4
with:
fetch-depth: '0'
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
- 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@v4.0.2
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@v4
if: failure()
with:
name: Reports
path: '**/build/reports/*'
retention-days: 2