From 6640a8681b9903c5cbb74de3d8fa4d5797f1b5a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Mickevi=C4=8Dius?= Date: Sun, 22 Sep 2024 08:54:21 +0300 Subject: [PATCH] Support Scala 3.5.1 --- .github/workflows/ci.yml | 13 ++++++++++++- build.sbt | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5150881..a5b3603 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 3.5.1 - 3.5.0 - 3.4.3 - 3.4.2 @@ -84,7 +85,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.5.0] + scala: [3.5.1] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -104,6 +105,16 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 + - name: Download target directories (3.5.1) + uses: actions/download-artifact@v4 + with: + name: target-${{ matrix.os }}-3.5.1-${{ matrix.java }} + + - name: Inflate target directories (3.5.1) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (3.5.0) uses: actions/download-artifact@v4 with: diff --git a/build.sbt b/build.sbt index 6c0d478..ed785e9 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, crossScalaVersions := Seq( - "3.5.0", + "3.5.1", "3.5.0", "3.4.3", "3.4.2", "3.4.1", "3.4.0", "3.3.3", "3.3.2", "3.3.1", "3.3.0", "3.2.2", "3.2.1",