Skip to content

Commit 552edc8

Browse files
authored
fix tag workflow java version (#389)
- fixes GA issue: - https://github.com/linkedin/kafka-monitor/actions/runs/3716497441/jobs/6302894482 ``` Run actions/setup-java@v3 Installed distributions Trying to resolve the latest version from remote Error: Could not find satisfied version for SemVer 1.8. Available versions: 17.0.3, 17.0.1+12.1, 16.0.2+7.1, 11.0.15, 11.0.13+8.1 ```
1 parent aec2d76 commit 552edc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
# bring in all history because the gradle versions plugin needs to "walk back" to the closest ancestor tag
1717
# to figure out what version this is. optimizing this is left as a challenge to future committers
1818
fetch-depth: 0
19-
- name: Set up JDK 1.8
19+
- name: Set up JDK
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: 1.8
22+
java-version: 11
2323
distribution: microsoft
2424
- name: Build with Gradle
2525
# add --info or --debug below for more details when trying to understand issues

0 commit comments

Comments
 (0)