Update dependency com.project.starter:android to v0.79.0 #1188
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: Generate dependency diff | |
on: | |
pull_request: | |
jobs: | |
generate-diff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Write Gradle build properties to `~/.gradle/gradle.properties` | |
run: | | |
mkdir -p ~/.gradle | |
printf "org.gradle.jvmargs=-Xmx3G -XX:+UseParallelGC\n" >> ~/.gradle/gradle.properties | |
shell: bash | |
- uses: gradle/actions/setup-gradle@v4 | |
- id: dependency-diff | |
name: Generate dependency diff | |
uses: usefulness/dependency-tree-diff-action@v2 | |
with: | |
configuration: 'runtimeClasspath' | |
project: 'easylauncher' | |
- uses: peter-evans/find-comment@v3 | |
id: find_comment | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body-includes: Dependency diff | |
- uses: peter-evans/create-or-update-comment@v4 | |
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 }} |