From f52eb63a6320bc66a33f047719fd4b5cf349a8ca Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 5 Mar 2024 12:53:35 +0100 Subject: [PATCH] Update scala-library, scalap to 2.13.13 (#176) * Update scala-library, scalap to 2.13.13 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 14 +++++++------- build.sbt | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b59003..9035022 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - scala: [2.13.12] + scala: [2.13.13] java: [temurin@8, temurin@11, temurin@17, temurin@21] runs-on: ${{ matrix.os }} steps: @@ -58,7 +58,7 @@ jobs: - name: Setup Java (temurin@21) if: matrix.java == 'temurin@21' - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: 21 @@ -86,7 +86,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12] + scala: [2.13.13] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -121,18 +121,18 @@ jobs: - name: Setup Java (temurin@21) if: matrix.java == 'temurin@21' - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: 21 cache: sbt - - name: Download target directories (2.13.12) + - name: Download target directories (2.13.13) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} - - name: Inflate target directories (2.13.12) + - name: Inflate target directories (2.13.13) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index d30927c..1d7f8d9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,11 +1,11 @@ val buildName = "jardiff" val scala212Version = "2.12.18" -val scala213Version = "2.13.12" +val scala213Version = "2.13.13" inThisBuild(Seq[Setting[_]]( organization := "com.lightbend", - scalaVersion := "2.13.12", + scalaVersion := "2.13.13", startYear := Some(2017), organizationName := "Lightbend Inc. ", licenses := List(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt"))),