Skip to content

Commit

Permalink
Update scala-library, scalap to 2.13.13 (#176)
Browse files Browse the repository at this point in the history
* Update scala-library, scalap to 2.13.13

* Regenerate GitHub Actions workflow

Executed command: sbt githubWorkflowGenerate
  • Loading branch information
scala-steward authored Mar 5, 2024
1 parent 2c81606 commit f52eb63
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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. <https://www.lightbend.com>",
licenses := List(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt"))),
Expand Down

0 comments on commit f52eb63

Please sign in to comment.