diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff23af4..b9f6db8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.20, 2.13.14, 3.5.0] + scala: [2.12.20, 2.13.14, 3.5.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -68,7 +68,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.5.0] + scala: [3.5.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -108,12 +108,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.5.0) + - name: Download target directories (3.5.1) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.5.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.5.1-${{ matrix.java }} - - name: Inflate target directories (3.5.0) + - name: Inflate target directories (3.5.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index c6c5b49..1274966 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -10,7 +10,7 @@ pull_request_rules: - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.12.20, temurin@11) - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.5.0, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.5.1, temurin@11) actions: queue: name: default diff --git a/build.sbt b/build.sbt index ff0e5f9..367d28e 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ inThisBuild(List( - crossScalaVersions := Seq("2.12.20", "2.13.14", "3.5.0"), + crossScalaVersions := Seq("2.12.20", "2.13.14", "3.5.1"), scalaVersion := crossScalaVersions.value.last, organization := "io.github.nafg.slick-migration-api" ))