From db74467f2cdea173a00d49d7d44bb5a1dae14d84 Mon Sep 17 00:00:00 2001 From: "davenverse-steward[bot]" <130607801+davenverse-steward[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:25:14 +0000 Subject: [PATCH] Update scala-library to 2.13.11 --- .github/workflows/ci.yml | 10 +++++----- build.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 977ec39..6d2c74e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.10, 3.2.2] + scala: [2.12.17, 2.13.11, 3.2.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.10' + if: matrix.scala == '2.13.11' uses: ruby/setup-ruby@v1 with: ruby-version: 3.0.1 - name: Install microsite dependencies - if: matrix.scala == '2.13.10' + if: matrix.scala == '2.13.11' 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.10' + - if: matrix.scala == '2.13.11' run: sbt --client '++${{ matrix.scala }}; site/makeMicrosite' publish: @@ -76,7 +76,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10] + scala: [2.13.11] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 78afb35..10b5004 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val scala213 = "2.13.10" +val scala213 = "2.13.11" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := Seq("2.12.17", scala213, "3.2.2")