Skip to content

Commit 87fe6be

Browse files
authored
Merge pull request #3236 from typelevel/update/scala-library-2.12.18
Update scala-library to 2.12.18
2 parents 3831ed5 + f12151f commit 87fe6be

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest, macos-latest]
31-
scala: [3.3.0, 2.12.17, 2.13.11]
31+
scala: [3.3.0, 2.12.18, 2.13.11]
3232
java: [temurin@17]
3333
project: [rootJS, rootJVM, rootNative]
3434
exclude:
3535
- scala: 3.3.0
3636
os: macos-latest
37-
- scala: 2.12.17
37+
- scala: 2.12.18
3838
os: macos-latest
3939
runs-on: ${{ matrix.os }}
4040
steps:
@@ -199,32 +199,32 @@ jobs:
199199
tar xf targets.tar
200200
rm targets.tar
201201
202-
- name: Download target directories (2.12.17, rootJS)
202+
- name: Download target directories (2.12.18, rootJS)
203203
uses: actions/download-artifact@v3
204204
with:
205-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJS
205+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.18-rootJS
206206

207-
- name: Inflate target directories (2.12.17, rootJS)
207+
- name: Inflate target directories (2.12.18, rootJS)
208208
run: |
209209
tar xf targets.tar
210210
rm targets.tar
211211
212-
- name: Download target directories (2.12.17, rootJVM)
212+
- name: Download target directories (2.12.18, rootJVM)
213213
uses: actions/download-artifact@v3
214214
with:
215-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJVM
215+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.18-rootJVM
216216

217-
- name: Inflate target directories (2.12.17, rootJVM)
217+
- name: Inflate target directories (2.12.18, rootJVM)
218218
run: |
219219
tar xf targets.tar
220220
rm targets.tar
221221
222-
- name: Download target directories (2.12.17, rootNative)
222+
- name: Download target directories (2.12.18, rootNative)
223223
uses: actions/download-artifact@v3
224224
with:
225-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootNative
225+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.18-rootNative
226226

227-
- name: Inflate target directories (2.12.17, rootNative)
227+
- name: Inflate target directories (2.12.18, rootNative)
228228
run: |
229229
tar xf targets.tar
230230
rm targets.tar

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ThisBuild / startYear := Some(2013)
1010

1111
val NewScala = "2.13.11"
1212

13-
ThisBuild / crossScalaVersions := Seq("3.3.0", "2.12.17", NewScala)
13+
ThisBuild / crossScalaVersions := Seq("3.3.0", "2.12.18", NewScala)
1414
ThisBuild / tlVersionIntroduced := Map("3" -> "3.0.3")
1515

1616
ThisBuild / githubWorkflowOSes := Seq("ubuntu-latest", "macos-latest")

0 commit comments

Comments
 (0)