From 2eb8ea161619e04981142ecc90b702bb60df77e1 Mon Sep 17 00:00:00 2001 From: Tochemey Date: Fri, 11 Oct 2024 18:20:03 +0100 Subject: [PATCH 1/2] feat: add build for scala 2.13.15 --- .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 a587bf9..8b20078 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 2.13.15 - 2.13.14 - 2.13.13 - 2.13.12 @@ -94,7 +95,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.14] + scala: [2.13.15] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -122,6 +123,16 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (2.13.15) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }} + + - name: Inflate target directories (2.13.15) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (2.13.14) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index 8ed5a9e..d8a0130 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.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.13.15", "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" ), From f677d3e0bd3cbbf605ff2ceba47df41e20c016d7 Mon Sep 17 00:00:00 2001 From: Tochemey Date: Fri, 11 Oct 2024 19:10:16 +0100 Subject: [PATCH 2/2] chore: rebase master --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11437d6..85e228b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,7 +108,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Download target directories (2.13.15) - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }}