diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7def69b..eadbbf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.15, 3.3.4] + scala: [2.13.16, 3.3.4] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -93,12 +93,12 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 - - name: Download target directories (2.13.15) + - name: Download target directories (2.13.16) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} - - name: Inflate target directories (2.13.15) + - name: Inflate target directories (2.13.16) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index a2d0df0..d415a47 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.15, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.16, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.4, temurin@11) actions: queue: diff --git a/build.sbt b/build.sbt index d591d9d..d8b0b91 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import sbtcrossproject.CrossPlugin.autoImport.{CrossType, crossProject} name := "slick-additions" -ThisBuild / crossScalaVersions := Seq("2.13.15", "3.3.4") +ThisBuild / crossScalaVersions := Seq("2.13.16", "3.3.4") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / organization := "io.github.nafg" ThisBuild / scalacOptions ++= Seq("-deprecation", "-unchecked")