Update dependency androidx.compose.compiler:compiler to v1.5.15 #648
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: DependencyDiff | |
on: | |
pull_request: | |
paths: | |
- 'gradle/libs.versions.toml' | |
- '**/build.gradle.kts' | |
concurrency: | |
group: dependency-diff-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dependency_diff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- id: dependency-diff | |
name: Generate dependency diff | |
run: | | |
BRANCH_NAME="${GITHUB_HEAD_REF}" | |
DIFF=$(scripts/dependency_diff.sh $BASE_BRANCH $BRANCH_NAME app releaseRuntimeClasspath) | |
DIFF="${DIFF//'%'/'%25'}" | |
DIFF="${DIFF//$'\n'/'%0A'}" | |
DIFF="${DIFF//$'\r'/'%0D'}" | |
echo "::set-output name=text-diff::${DIFF}" | |
env: | |
BASE_BRANCH: ${{ github.base_ref }} | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- uses: peter-evans/find-comment@b1c41cb2fb7ede4111f49c934663a66f1a664b63 | |
id: find_comment | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body-includes: Dependency diff | |
- uses: peter-evans/create-or-update-comment@6fcd282399b3c9ad0bd9bd8025b8fb2c18b085dd | |
if: ${{ steps.dependency-diff.outputs.text-diff != null && steps.find_comment.outputs.comment-id != null }} | |
with: | |
body: | | |
Dependency diff: | |
```diff | |
${{ steps.dependency-diff.outputs.text-diff }} | |
``` | |
edit-mode: replace | |
comment-id: ${{ steps.find_comment.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
token: ${{ secrets.GITHUB_TOKEN }} |