Skip to content

Commit

Permalink
Update to Error Prone 2.14.0 (#606)
Browse files Browse the repository at this point in the history
This requires updating GitHub Actions required CI job names as well.
  • Loading branch information
msridhar authored May 31, 2022
1 parent 8789075 commit 30940be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
epVersion: 2.4.0
- os: macos-latest
java: 11
epVersion: 2.13.1
epVersion: 2.14.0
- os: ubuntu-latest
java: 11
epVersion: 2.13.1
epVersion: 2.14.0
- os: windows-latest
java: 11
epVersion: 2.13.1
epVersion: 2.14.0
- os: ubuntu-latest
java: 17
epVersion: 2.13.1
epVersion: 2.14.0
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
with:
arguments: coveralls
continue-on-error: true
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.13.1' && github.repository == 'uber/NullAway'
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.14.0' && github.repository == 'uber/NullAway'
- name: Check that Git tree is clean after build and test
run: ./.buildscript/check_git_clean.sh
publish_snapshot:
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import org.gradle.util.VersionNumber
// The oldest version of Error Prone that we support running on
def oldestErrorProneVersion = "2.4.0"
// Latest released Error Prone version that we've tested with
def latestErrorProneVersion = "2.13.1"
def latestErrorProneVersion = "2.14.0"
// Default to using latest tested Error Prone version, except on Java 8, where 2.10.0 is the last version
// that works
def defaultErrorProneVersion = JavaVersion.current() >= JavaVersion.VERSION_11 ? latestErrorProneVersion : "2.10.0"
Expand Down

0 comments on commit 30940be

Please sign in to comment.