Bump com.google.errorprone:error_prone_core from 2.33.0 to 2.34.0 (#1… #149
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: Dependency Submission | |
on: | |
push: | |
branches: | |
- main | |
- master | |
permissions: | |
contents: write | |
jobs: | |
checkUpdates: | |
name: Determines all dependencies and submits the list to github for use in dependency insights | |
runs-on: ubuntu-latest | |
steps: | |
# Check out sources | |
- name: Fetch Sources | |
uses: actions/[email protected] | |
# Setup JDK environment for the next steps | |
- name: Setup JDK 21 | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: gradle | |
- name: Generate and submit dependency graph | |
uses: gradle/actions/dependency-submission@v4 | |
with: | |
build-scan-publish: true | |
build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
build-scan-terms-of-use-agree: "yes" |