Bump com.google.errorprone:error_prone_core from 2.31.0 to 2.34.0 #192
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: Java CI with Gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
matrix: | |
jdk: [ 11, 17 ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull Request Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
if: github.head_ref != '' | |
- name: Push Checkout | |
uses: actions/checkout@v4 | |
if: github.head_ref == '' | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{matrix.jdk}} | |
- name: Github Environment Setup | |
run: | | |
owner=${{ github.repository_owner }} | |
echo "REPO_SITE=${owner}" >> $GITHUB_ENV | |
- name: Build with Gradle | |
run: ./gradlew build --warning-mode all |