From 4aa248d06de3c98335750806553b1c4d6100dfea Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Fri, 24 May 2024 08:24:31 +0200 Subject: [PATCH] Add Scala 3.4.2 --- .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 eae1e84..8f4f928 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 3.4.2 - 3.4.1 - 3.4.0 - 3.3.3 @@ -89,7 +90,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.4.1] + scala: [3.4.2] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -117,6 +118,16 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (3.4.2) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-3.4.2-${{ matrix.java }} + + - name: Inflate target directories (3.4.2) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (3.4.1) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index 03b24ae..965a1fa 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, crossScalaVersions := Seq( - "3.4.1", "3.4.0", + "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", "2.13.10", "2.13.11", "2.13.12", "2.13.13", "2.13.14",