summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-11-11 22:36:15 +0100
committerGitHub <noreply@github.com>2021-11-11 22:36:15 +0100
commit381c7589cbf01ca6ed321c58c8a3a9cbea6ebd84 (patch)
tree54d9705f0fedacd33b6e8e4525943f0cb8f15522 /.github
parenta27e1e5ec300b3b0bd3d4631b680d3b052a69b7d (diff)
parentecfd503a4233f9f1a496772aeb1d53f037321d65 (diff)
merge: Upgrade to Gradle 7.3 (#42)
This pull request upgrades Gradle to version 7.3. OpenDC uses Gradle to orchestrate the build process. * Upgrade to Gradle wrapper to 7.3 * Fix Gradle release candidate test workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--.github/workflows/test-gradle-rc.yml1
3 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d72ad63e..98521e71 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -13,10 +13,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
- java: [11, 16]
+ java: [11, 17]
include:
- os: windows-latest
- java: 16
+ java: 17
steps:
- name: Checkout repository
uses: actions/checkout@v2
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ce1d2a1b..73bc3905 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- java: [ 16 ]
+ java: [ 17 ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
diff --git a/.github/workflows/test-gradle-rc.yml b/.github/workflows/test-gradle-rc.yml
index c03c037a..3f62004b 100644
--- a/.github/workflows/test-gradle-rc.yml
+++ b/.github/workflows/test-gradle-rc.yml
@@ -10,6 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
+ distribution: 'zulu'
java-version: 17
- uses: gradle/gradle-build-action@v2
with: