diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89d4de39..89b7404f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.6, 3.1.2] + scala: [2.12.15, 2.13.12, 3.1.2] java: [adopt@1.8, adopt@1.11] runs-on: ${{ matrix.os }} steps: @@ -50,13 +50,13 @@ jobs: key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - name: Setup Ruby - if: matrix.scala == '2.13.6' + if: matrix.scala == '2.13.12' uses: ruby/setup-ruby@v1 with: ruby-version: 3.0.1 - name: Install microsite dependencies - if: matrix.scala == '2.13.6' + if: matrix.scala == '2.13.12' run: | gem install saas gem install jekyll -v 4.2.0 @@ -66,7 +66,7 @@ jobs: - run: sbt --client '++${{ matrix.scala }}; test; mimaReportBinaryIssues' - - if: matrix.scala == '2.13.6' + - if: matrix.scala == '2.13.12' run: sbt --client '++${{ matrix.scala }}; site/makeMicrosite' publish: diff --git a/build.sbt b/build.sbt index e42deefe..c3f8ecb1 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ import sbtcrossproject.CrossPlugin.autoImport.crossProject -val Scala213 = "2.13.6" +val Scala213 = "2.13.12" val Scala212 = "2.12.15" val Scala3 = "3.1.2"