aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu Sridharan <msridhar@gmail.com>2024-01-03 14:14:42 -0500
committerGitHub <noreply@github.com>2024-01-03 19:14:42 +0000
commit257e4bb36f97776ebd4e5a95205186e4f5a4a694 (patch)
tree79f5d13db62ad49fdc9ecff9978053a38123b37c
parentb5cd1f9010f1a09ddb4b9f81dcade81e195362ab (diff)
downloadnullaway-257e4bb36f97776ebd4e5a95205186e4f5a4a694.tar.gz
Update to Error Prone 2.24.1 (#888)
Just to stay up to date.
-rw-r--r--.github/workflows/continuous-integration.yml10
-rwxr-xr-xgradle/dependencies.gradle2
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml
index 62adc2f..00c76ab 100644
--- a/.github/workflows/continuous-integration.yml
+++ b/.github/workflows/continuous-integration.yml
@@ -21,16 +21,16 @@ jobs:
epVersion: 2.10.0
- os: macos-latest
java: 11
- epVersion: 2.23.0
+ epVersion: 2.24.1
- os: ubuntu-latest
java: 11
- epVersion: 2.23.0
+ epVersion: 2.24.1
- os: windows-latest
java: 11
- epVersion: 2.23.0
+ epVersion: 2.24.1
- os: ubuntu-latest
java: 17
- epVersion: 2.23.0
+ epVersion: 2.24.1
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
@@ -63,7 +63,7 @@ jobs:
with:
arguments: codeCoverageReport
continue-on-error: true
- if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.23.0' && github.repository == 'uber/NullAway'
+ if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.24.1' && github.repository == 'uber/NullAway'
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index 9916951..01bbe70 100755
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -19,7 +19,7 @@ import org.gradle.util.VersionNumber
// The oldest version of Error Prone that we support running on
def oldestErrorProneVersion = "2.10.0"
// Latest released Error Prone version that we've tested with
-def latestErrorProneVersion = "2.23.0"
+def latestErrorProneVersion = "2.24.1"
// Default to using latest tested Error Prone version
def defaultErrorProneVersion = latestErrorProneVersion
def errorProneVersionToCompileAgainst = defaultErrorProneVersion