We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab5c98a commit de8b737Copy full SHA for de8b737
.github/workflows/release.yml
@@ -2,19 +2,21 @@ name: Release JVM probe
2
3
on:
4
release:
5
- types: [published]
+ types: [ published ]
6
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
11
steps:
12
- uses: actions/checkout@v3
13
- - name: Set up JDK 17
+
14
+ #Note: must use < JDK 16 to avoid Stream.toList() overriding StreamsKT.toList() (KT-47039)
15
+ - name: Set up JDK 11
16
uses: actions/setup-java@v3
17
with:
- java-version: '17'
- distribution: 'adopt'
18
+ java-version: 11
19
+ distribution: 'temurin'
20
cache: gradle
21
22
- name: Export Properties
0 commit comments