Skip to content

Commit

Permalink
Update various dependencies (#939)
Browse files Browse the repository at this point in the history
Gradle, Error Prone, Spotless, GJF, and versions plugin to latest.

We'll have to update required CI job names before landing this.
  • Loading branch information
msridhar committed Mar 24, 2024
1 parent 5bedf0a commit 83e0149
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -21,16 +21,16 @@ jobs:
epVersion: 2.10.0
- os: macos-latest
java: 11
epVersion: 2.25.0
epVersion: 2.26.1
- os: ubuntu-latest
java: 11
epVersion: 2.25.0
epVersion: 2.26.1
- os: windows-latest
java: 11
epVersion: 2.25.0
epVersion: 2.26.1
- os: ubuntu-latest
java: 17
epVersion: 2.25.0
epVersion: 2.26.1
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
with:
arguments: codeCoverageReport
continue-on-error: true
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.25.0' && github.repository == 'uber/NullAway'
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.26.1' && github.repository == 'uber/NullAway'
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -27,11 +27,11 @@ buildscript {
}
}
plugins {
id "com.diffplug.spotless" version "6.23.3"
id "com.diffplug.spotless" version "6.25.0"
id "net.ltgt.errorprone" version "3.1.0" apply false
id "com.github.johnrengelman.shadow" version "8.1.1" apply false
id "me.champeau.jmh" version "0.7.1" apply false
id "com.github.ben-manes.versions" version "0.50.0"
id "com.github.ben-manes.versions" version "0.51.0"
id "com.felipefzdz.gradle.shellcheck" version "1.4.6"
}

Expand Down Expand Up @@ -118,7 +118,7 @@ spotless {
}
}
spotlessPredeclare {
java { googleJavaFormat('1.18.1') }
java { googleJavaFormat('1.19.2') }
groovyGradle {
greclipse()
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
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.10.0"
// Latest released Error Prone version that we've tested with
def latestErrorProneVersion = "2.25.0"
def latestErrorProneVersion = "2.26.1"
// Default to using latest tested Error Prone version
def defaultErrorProneVersion = latestErrorProneVersion
def errorProneVersionToCompileAgainst = defaultErrorProneVersion
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=9631d53cf3e74bfa726893aee1f8994fee4e060c401335946dba2156f440f24c
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 83e0149

Please sign in to comment.