From baea72f4554b56903699f8c54632acc54936a859 Mon Sep 17 00:00:00 2001 From: Roman Janusz Date: Mon, 6 May 2024 13:40:45 +0200 Subject: [PATCH] scala 2.13.14 --- .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 7a69dce..a587bf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 2.13.14 - 2.13.13 - 2.13.12 - 2.13.11 @@ -93,7 +94,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.13] + scala: [2.13.14] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -121,6 +122,16 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (2.13.14) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} + + - name: Inflate target directories (2.13.14) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (2.13.13) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index b915afa..8ed5a9e 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,7 @@ inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, crossScalaVersions := Seq( - "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", + "2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12" ),