Skip to content

Commit 794a74c

Browse files
authored
Merge pull request #300 from gnieh/scala-2.13.9
Bump scala versions
2 parents ee95ea6 + 9e72781 commit 794a74c

File tree

2 files changed

+32
-32
lines changed

2 files changed

+32
-32
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest]
31-
scala: [2.12.16, 2.13.8, 3.1.3]
31+
scala: [2.12.17, 2.13.9, 3.2.0]
3232
java: [temurin@8]
3333
project: [rootJS, rootJVM, rootNative]
3434
runs-on: ${{ matrix.os }}
@@ -114,7 +114,7 @@ jobs:
114114
strategy:
115115
matrix:
116116
os: [ubuntu-latest]
117-
scala: [2.13.8]
117+
scala: [2.13.9]
118118
java: [temurin@8]
119119
runs-on: ${{ matrix.os }}
120120
steps:
@@ -151,92 +151,92 @@ jobs:
151151
~/Library/Caches/Coursier/v1
152152
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
153153

154-
- name: Download target directories (2.12.16, rootJS)
154+
- name: Download target directories (2.12.17, rootJS)
155155
uses: actions/download-artifact@v2
156156
with:
157-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJS
157+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJS
158158

159-
- name: Inflate target directories (2.12.16, rootJS)
159+
- name: Inflate target directories (2.12.17, rootJS)
160160
run: |
161161
tar xf targets.tar
162162
rm targets.tar
163163
164-
- name: Download target directories (2.12.16, rootJVM)
164+
- name: Download target directories (2.12.17, rootJVM)
165165
uses: actions/download-artifact@v2
166166
with:
167-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJVM
167+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJVM
168168

169-
- name: Inflate target directories (2.12.16, rootJVM)
169+
- name: Inflate target directories (2.12.17, rootJVM)
170170
run: |
171171
tar xf targets.tar
172172
rm targets.tar
173173
174-
- name: Download target directories (2.12.16, rootNative)
174+
- name: Download target directories (2.12.17, rootNative)
175175
uses: actions/download-artifact@v2
176176
with:
177-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootNative
177+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootNative
178178

179-
- name: Inflate target directories (2.12.16, rootNative)
179+
- name: Inflate target directories (2.12.17, rootNative)
180180
run: |
181181
tar xf targets.tar
182182
rm targets.tar
183183
184-
- name: Download target directories (2.13.8, rootJS)
184+
- name: Download target directories (2.13.9, rootJS)
185185
uses: actions/download-artifact@v2
186186
with:
187-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJS
187+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootJS
188188

189-
- name: Inflate target directories (2.13.8, rootJS)
189+
- name: Inflate target directories (2.13.9, rootJS)
190190
run: |
191191
tar xf targets.tar
192192
rm targets.tar
193193
194-
- name: Download target directories (2.13.8, rootJVM)
194+
- name: Download target directories (2.13.9, rootJVM)
195195
uses: actions/download-artifact@v2
196196
with:
197-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJVM
197+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootJVM
198198

199-
- name: Inflate target directories (2.13.8, rootJVM)
199+
- name: Inflate target directories (2.13.9, rootJVM)
200200
run: |
201201
tar xf targets.tar
202202
rm targets.tar
203203
204-
- name: Download target directories (2.13.8, rootNative)
204+
- name: Download target directories (2.13.9, rootNative)
205205
uses: actions/download-artifact@v2
206206
with:
207-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootNative
207+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootNative
208208

209-
- name: Inflate target directories (2.13.8, rootNative)
209+
- name: Inflate target directories (2.13.9, rootNative)
210210
run: |
211211
tar xf targets.tar
212212
rm targets.tar
213213
214-
- name: Download target directories (3.1.3, rootJS)
214+
- name: Download target directories (3.2.0, rootJS)
215215
uses: actions/download-artifact@v2
216216
with:
217-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootJS
217+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0-rootJS
218218

219-
- name: Inflate target directories (3.1.3, rootJS)
219+
- name: Inflate target directories (3.2.0, rootJS)
220220
run: |
221221
tar xf targets.tar
222222
rm targets.tar
223223
224-
- name: Download target directories (3.1.3, rootJVM)
224+
- name: Download target directories (3.2.0, rootJVM)
225225
uses: actions/download-artifact@v2
226226
with:
227-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootJVM
227+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0-rootJVM
228228

229-
- name: Inflate target directories (3.1.3, rootJVM)
229+
- name: Inflate target directories (3.2.0, rootJVM)
230230
run: |
231231
tar xf targets.tar
232232
rm targets.tar
233233
234-
- name: Download target directories (3.1.3, rootNative)
234+
- name: Download target directories (3.2.0, rootNative)
235235
uses: actions/download-artifact@v2
236236
with:
237-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootNative
237+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0-rootNative
238238

239-
- name: Inflate target directories (3.1.3, rootNative)
239+
- name: Inflate target directories (3.2.0, rootNative)
240240
run: |
241241
tar xf targets.tar
242242
rm targets.tar

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
val scala212 = "2.12.16"
2-
val scala213 = "2.13.8"
3-
val scala3 = "3.1.3"
1+
val scala212 = "2.12.17"
2+
val scala213 = "2.13.9"
3+
val scala3 = "3.2.0"
44

55
val scalatestVersion = "3.2.13"
66
val scalacheckVersion = "1.17.0"

0 commit comments

Comments
 (0)