diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40dd53be..5aa2dbcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.5, 2.12.10] + scala: [2.13.5, 2.12.15] java: [adopt@1.8, adopt@1.11] runs-on: ${{ matrix.os }} steps: @@ -64,21 +64,21 @@ jobs: - name: Stop docker containers run: docker-compose down - - if: matrix.scala == '2.12.10' + - if: matrix.scala == '2.12.15' uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 - - if: matrix.scala == '2.12.10' + - if: matrix.scala == '2.12.15' run: gem update --system - - if: matrix.scala == '2.12.10' + - if: matrix.scala == '2.12.15' run: gem install sass - - if: matrix.scala == '2.12.10' + - if: matrix.scala == '2.12.15' run: gem install jekyll -v 4 - - if: matrix.scala == '2.12.10' + - if: matrix.scala == '2.12.15' run: sbt ++${{ matrix.scala }} site/makeMicrosite - name: Compress target directories @@ -133,12 +133,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.10) + - name: Download target directories (2.12.15) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.10-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} - - name: Inflate target directories (2.12.10) + - name: Inflate target directories (2.12.15) run: | tar xf targets.tar rm targets.tar @@ -153,7 +153,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.5, 2.12.10] + scala: [2.13.5, 2.12.15] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -215,12 +215,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.10) + - name: Download target directories (2.12.15) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.10-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} - - name: Inflate target directories (2.12.10) + - name: Inflate target directories (2.12.15) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 84d7f77b..7f4d2a27 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ val Scala213 = "2.13.5" -val Scala212 = "2.12.10" +val Scala212 = "2.12.15" val Java18 = "adopt@1.8" val Java11 = "adopt@1.11"