diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-11-04 16:53:22 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-11-04 17:21:58 +0100 |
| commit | acb45a1dea61dd844fba839cc31c79a7aca4bbe4 (patch) | |
| tree | b4eac3fe9de5bbd8518d2e97959ad88b6704a3f5 /.github/workflows/test-gradle-rc.yml | |
| parent | 9d06fb04319a50c26599f2da5387a2d03bee15ec (diff) | |
build: Increase minimum Java version to Java 17
This change updates the Gradle configuration to target Java 17 (instead
of Java 11) as the lowest denominator when running/building OpenDC. This
version of Java has been available for more than a year and is the
latest LTS release.
Diffstat (limited to '.github/workflows/test-gradle-rc.yml')
| -rw-r--r-- | .github/workflows/test-gradle-rc.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test-gradle-rc.yml b/.github/workflows/test-gradle-rc.yml index a39d36d7..b58bbcb1 100644 --- a/.github/workflows/test-gradle-rc.yml +++ b/.github/workflows/test-gradle-rc.yml @@ -11,8 +11,9 @@ jobs: - uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: 18 + java-version: 19 - uses: gradle/gradle-build-action@v2 with: + cache-disabled: true gradle-version: release-candidate arguments: build --dry-run # just test build configuration |
