@@ -30,11 +30,11 @@ jobs:
30
30
matrix :
31
31
os : [ubuntu-latest]
32
32
scala : [2.12, 2.13, 3]
33
- java : [temurin @11]
33
+ java : [corretto @11]
34
34
project : [rootJS, rootJVM, rootNative]
35
35
include :
36
36
- scala : 3
37
- java : temurin @11
37
+ java : corretto @11
38
38
project : rootNative
39
39
os : macos-latest
40
40
exclude :
@@ -51,17 +51,17 @@ jobs:
51
51
with :
52
52
fetch-depth : 0
53
53
54
- - name : Setup Java (temurin @11)
55
- id : setup-java-temurin -11
56
- if : matrix.java == 'temurin @11'
54
+ - name : Setup Java (corretto @11)
55
+ id : setup-java-corretto -11
56
+ if : matrix.java == 'corretto @11'
57
57
uses : actions/setup-java@v4
58
58
with :
59
- distribution : temurin
59
+ distribution : corretto
60
60
java-version : 11
61
61
cache : sbt
62
62
63
63
- name : sbt update
64
- if : matrix.java == 'temurin @11' && steps.setup-java-temurin -11.outputs.cache-hit == 'false'
64
+ if : matrix.java == 'corretto @11' && steps.setup-java-corretto -11.outputs.cache-hit == 'false'
65
65
run : ./sbt +update
66
66
67
67
- name : Check that workflows are up to date
@@ -79,11 +79,11 @@ jobs:
79
79
run : ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' test
80
80
81
81
- name : Check binary compatibility
82
- if : matrix.java == 'temurin @11' && matrix.os == 'ubuntu-latest'
82
+ if : matrix.java == 'corretto @11' && matrix.os == 'ubuntu-latest'
83
83
run : ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' mimaReportBinaryIssues
84
84
85
85
- name : Generate API documentation
86
- if : matrix.java == 'temurin @11' && matrix.os == 'ubuntu-latest'
86
+ if : matrix.java == 'corretto @11' && matrix.os == 'ubuntu-latest'
87
87
run : ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc
88
88
89
89
- name : Make target directories
@@ -108,25 +108,25 @@ jobs:
108
108
strategy :
109
109
matrix :
110
110
os : [ubuntu-latest]
111
- java : [temurin @11]
111
+ java : [corretto @11]
112
112
runs-on : ${{ matrix.os }}
113
113
steps :
114
114
- name : Checkout current branch (full)
115
115
uses : actions/checkout@v4
116
116
with :
117
117
fetch-depth : 0
118
118
119
- - name : Setup Java (temurin @11)
120
- id : setup-java-temurin -11
121
- if : matrix.java == 'temurin @11'
119
+ - name : Setup Java (corretto @11)
120
+ id : setup-java-corretto -11
121
+ if : matrix.java == 'corretto @11'
122
122
uses : actions/setup-java@v4
123
123
with :
124
- distribution : temurin
124
+ distribution : corretto
125
125
java-version : 11
126
126
cache : sbt
127
127
128
128
- name : sbt update
129
- if : matrix.java == 'temurin @11' && steps.setup-java-temurin -11.outputs.cache-hit == 'false'
129
+ if : matrix.java == 'corretto @11' && steps.setup-java-corretto -11.outputs.cache-hit == 'false'
130
130
run : ./sbt +update
131
131
132
132
- name : Download target directories (2.12, rootJS)
@@ -229,25 +229,25 @@ jobs:
229
229
strategy :
230
230
matrix :
231
231
os : [ubuntu-latest]
232
- java : [temurin @11]
232
+ java : [corretto @11]
233
233
runs-on : ${{ matrix.os }}
234
234
steps :
235
235
- name : Checkout current branch (full)
236
236
uses : actions/checkout@v4
237
237
with :
238
238
fetch-depth : 0
239
239
240
- - name : Setup Java (temurin @11)
241
- id : setup-java-temurin -11
242
- if : matrix.java == 'temurin @11'
240
+ - name : Setup Java (corretto @11)
241
+ id : setup-java-corretto -11
242
+ if : matrix.java == 'corretto @11'
243
243
uses : actions/setup-java@v4
244
244
with :
245
- distribution : temurin
245
+ distribution : corretto
246
246
java-version : 11
247
247
cache : sbt
248
248
249
249
- name : sbt update
250
- if : matrix.java == 'temurin @11' && steps.setup-java-temurin -11.outputs.cache-hit == 'false'
250
+ if : matrix.java == 'corretto @11' && steps.setup-java-corretto -11.outputs.cache-hit == 'false'
251
251
run : ./sbt +update
252
252
253
253
- name : Submit Dependencies
0 commit comments