diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 942d65bd..8884826b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,11 +28,11 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.8, 3.2.0] + scala: [2.12.17, 2.13.10, 3.2.0] java: [temurin@8, temurin@17] project: [rootJS, rootJVM, rootNative] exclude: - - scala: 2.13.8 + - scala: 2.13.10 java: temurin@17 - scala: 3.2.0 java: temurin@17 @@ -222,32 +222,32 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootJS) + - name: Download target directories (2.13.10, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJS - - name: Inflate target directories (2.13.8, rootJS) + - name: Inflate target directories (2.13.10, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootJVM) + - name: Download target directories (2.13.10, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJVM - - name: Inflate target directories (2.13.8, rootJVM) + - name: Inflate target directories (2.13.10, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootNative) + - name: Download target directories (2.13.10, rootNative) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootNative - - name: Inflate target directories (2.13.8, rootNative) + - name: Inflate target directories (2.13.10, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 1adac40b..e2cda96e 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ ThisBuild / developers := List( ) val scala212 = "2.12.17" -val scala213 = "2.13.8" +val scala213 = "2.13.10" val scala3 = "3.2.0" val PrimaryJava = JavaSpec.temurin("8") val LTSJava = JavaSpec.temurin("17")