Bump com.google.errorprone:error_prone_core from 2.3.2 to 2.27.1 #301
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: Maven CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
java-version: [ 8 ] | |
distro: [ 'zulu', 'temurin' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distro }} | |
java-version: ${{ matrix.java-version }} | |
- name: Build with Maven | |
run: mvn package --file pom.xml |