diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 773d6b35df..1e06aed7d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - ubuntu-22.04-arm - windows-latest - macos-14 - scala: [3.3.7, 2.12.20, 2.13.16] + scala: [3.3.7, 2.12.20, 2.13.18] java: - temurin@8 - temurin@11 @@ -304,7 +304,7 @@ jobs: - shell: bash run: sbt '++ ${{ matrix.scala }}' '${{ matrix.ci }}' - - if: (matrix.scala == '2.13.16' || matrix.scala == '3.3.7') && matrix.ci == 'ciJVM' && matrix.java == 'temurin@17' + - if: (matrix.scala == '2.13.18' || matrix.scala == '3.3.7') && matrix.ci == 'ciJVM' && matrix.java == 'temurin@17' shell: bash run: sbt '++ ${{ matrix.scala }}' docs/mdoc @@ -324,12 +324,12 @@ jobs: run: example/test-native.sh ${{ matrix.scala }} - name: Test GraalVM Native Image - if: (matrix.scala == '2.13.16' || matrix.scala == '3.3.7') && matrix.java == 'graalvm@21' && matrix.os == 'ubuntu-latest' + if: (matrix.scala == '2.13.18' || matrix.scala == '3.3.7') && matrix.java == 'graalvm@21' && matrix.os == 'ubuntu-latest' shell: bash run: sbt '++ ${{ matrix.scala }}' graalVMExample/nativeImage graalVMExample/nativeImageRun - name: Scalafix tests - if: matrix.scala == '2.13.16' && matrix.ci == 'ciJVM' && matrix.os == 'ubuntu-latest' + if: matrix.scala == '2.13.18' && matrix.ci == 'ciJVM' && matrix.os == 'ubuntu-latest' shell: bash run: | cd scalafix @@ -499,52 +499,52 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.16, ciJVM) + - name: Download target directories (2.13.18, ciJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.18-ciJVM - - name: Inflate target directories (2.13.16, ciJVM) + - name: Inflate target directories (2.13.18, ciJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.16, ciNative) + - name: Download target directories (2.13.18, ciNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.18-ciNative - - name: Inflate target directories (2.13.16, ciNative) + - name: Inflate target directories (2.13.18, ciNative) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.16, ciJS) + - name: Download target directories (2.13.18, ciJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.18-ciJS - - name: Inflate target directories (2.13.16, ciJS) + - name: Inflate target directories (2.13.18, ciJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.16, ciFirefox) + - name: Download target directories (2.13.18, ciFirefox) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciFirefox + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.18-ciFirefox - - name: Inflate target directories (2.13.16, ciFirefox) + - name: Inflate target directories (2.13.18, ciFirefox) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.16, ciChrome) + - name: Download target directories (2.13.18, ciChrome) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciChrome + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.18-ciChrome - - name: Inflate target directories (2.13.16, ciChrome) + - name: Inflate target directories (2.13.18, ciChrome) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 5002f20f34..9215beaa32 100644 --- a/build.sbt +++ b/build.sbt @@ -115,7 +115,7 @@ val Windows = "windows-latest" val MacOS = "macos-14" val Scala212 = "2.12.20" -val Scala213 = "2.13.16" +val Scala213 = "2.13.18" val Scala3 = "3.3.7" ThisBuild / crossScalaVersions := Seq(Scala3, Scala212, Scala213)