From 1b6db0d8b1108ce51dd8cefc82acf3202d9504b3 Mon Sep 17 00:00:00 2001 From: Hagai Ovadia Date: Sun, 5 Feb 2023 19:43:18 +0200 Subject: [PATCH] align scala version --- .github/workflows/ci.yml | 8 ++++---- build.sbt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a5774a..9e2da25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - scala: [2.12.6, 2.13.10] + scala: [2.12.16, 2.13.10] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -97,12 +97,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.6) + - name: Download target directories (2.12.16) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.6-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.16-${{ matrix.java }} - - name: Inflate target directories (2.12.6) + - name: Inflate target directories (2.12.16) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 066ed74..0057372 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ name := "play-json-zipper" version := "2.0.1" -val scala12Version = "2.12.6" +val scala12Version = "2.12.16" val scala13Version = "2.13.10" val currentScalaVersion = scala13Version