diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-11 17:50:05 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-11 17:50:05 +0100 |
| commit | 0d4ce1906d84f2ef9b9cf7da73189d0d71bee46f (patch) | |
| tree | ee9ad20b79cf7fbf544fcef3c1ec17d539c3d3b1 | |
| parent | 651e3b3c6e73ca56b64a2c9b4d212bb40a1430b8 (diff) | |
ci: Fix Gradle release candidate test workflow
This change fixes an issue with the workflow that tests the latest
Gradle release candidate where the distribution of the Java runtime was
not specified, which has been made a required parameter since
setup-java@v2.
| -rw-r--r-- | .github/workflows/test-gradle-rc.yml | 1 |
1 files changed, 1 insertions, 0 deletions
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: |
