Bump com.google.errorprone:error_prone_core from 2.34.0 to 2.35.1 (#2… #1723
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Check for Updates | |
on: | |
push: | |
branches: | |
- master | |
- release | |
pull_request: | |
branches: | |
- master | |
- release | |
jobs: | |
checkUpdates: | |
name: Check for available updates | |
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 | |
# Setup gradle | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
validate-wrappers: true | |
# Run dependencyUpdates task | |
- name: Run dependencyUpdates task | |
run: ./gradlew --no-daemon --refresh-dependencies --scan dependencyUpdates | |
# Store dependencyUpdates result files | |
- name: Store dependencyUpdates result files | |
uses: actions/[email protected] | |
with: | |
name: dependencyUpdates results | |
path: build/dependencyUpdates/ | |
retention-days: 3 | |
# Run dependency-analysis task | |
- name: Run dependency-analysis task | |
run: ./gradlew --no-daemon --refresh-dependencies --scan buildHealth | |
# Store dependency-analysis result files | |
- name: Store dependency-analysis result files | |
uses: actions/[email protected] | |
with: | |
name: dependency-analysis results | |
path: build/reports/dependency-analysis/ | |
retention-days: 3 |