Bump io.sentry.android.gradle from 4.11.0 to 4.13.0 (#3158) #1185
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: Submit dependencies to GitHub Dependency Graph | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup Gradle to generate and submit dependency graphs | |
uses: gradle/gradle-build-action@v2 | |
with: | |
dependency-graph: generate-and-submit | |
- name: Generate the dependency graph which will be submitted post-job | |
run: ./gradlew :app:dependencies :automotive:dependencies :wear:dependencies |