Skip to content

Commit a284d42

Browse files
committed
scala 2.13.16
1 parent 3bc343c commit a284d42

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/ci.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
matrix:
2525
os: [ubuntu-latest]
2626
scala:
27+
- 2.13.16
2728
- 2.13.15
2829
- 2.13.14
2930
- 2.13.13
@@ -88,7 +89,7 @@ jobs:
8889
strategy:
8990
matrix:
9091
os: [ubuntu-latest]
91-
scala: [2.13.15]
92+
scala: [2.13.16]
9293
java: [temurin@17]
9394
runs-on: ${{ matrix.os }}
9495
steps:
@@ -108,6 +109,16 @@ jobs:
108109
- name: Setup sbt
109110
uses: sbt/setup-sbt@v1
110111

112+
- name: Download target directories (2.13.16)
113+
uses: actions/download-artifact@v4
114+
with:
115+
name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }}
116+
117+
- name: Inflate target directories (2.13.16)
118+
run: |
119+
tar xf targets.tar
120+
rm targets.tar
121+
111122
- name: Download target directories (2.13.15)
112123
uses: actions/download-artifact@v4
113124
with:

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inThisBuild(Seq(
2121
organization := "com.github.ghik",
2222
scalaVersion := crossScalaVersions.value.head,
2323
crossScalaVersions := Seq(
24-
"2.13.15", "2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2",
24+
"2.13.16", "2.13.15", "2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2",
2525
"2.12.20", "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"
2626
),
2727

0 commit comments

Comments
 (0)