Skip to content

Commit f52eb63

Browse files
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
1 parent 2c81606 commit f52eb63

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest, macos-latest]
26-
scala: [2.13.12]
26+
scala: [2.13.13]
2727
java: [temurin@8, temurin@11, temurin@17, temurin@21]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Setup Java (temurin@21)
6060
if: matrix.java == 'temurin@21'
61-
uses: actions/setup-java@v3
61+
uses: actions/setup-java@v4
6262
with:
6363
distribution: temurin
6464
java-version: 21
@@ -86,7 +86,7 @@ jobs:
8686
strategy:
8787
matrix:
8888
os: [ubuntu-latest]
89-
scala: [2.13.12]
89+
scala: [2.13.13]
9090
java: [temurin@8]
9191
runs-on: ${{ matrix.os }}
9292
steps:
@@ -121,18 +121,18 @@ jobs:
121121

122122
- name: Setup Java (temurin@21)
123123
if: matrix.java == 'temurin@21'
124-
uses: actions/setup-java@v3
124+
uses: actions/setup-java@v4
125125
with:
126126
distribution: temurin
127127
java-version: 21
128128
cache: sbt
129129

130-
- name: Download target directories (2.13.12)
130+
- name: Download target directories (2.13.13)
131131
uses: actions/download-artifact@v4
132132
with:
133-
name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }}
133+
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}
134134

135-
- name: Inflate target directories (2.13.12)
135+
- name: Inflate target directories (2.13.13)
136136
run: |
137137
tar xf targets.tar
138138
rm targets.tar

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
val buildName = "jardiff"
22

33
val scala212Version = "2.12.18"
4-
val scala213Version = "2.13.12"
4+
val scala213Version = "2.13.13"
55

66
inThisBuild(Seq[Setting[_]](
77
organization := "com.lightbend",
8-
scalaVersion := "2.13.12",
8+
scalaVersion := "2.13.13",
99
startYear := Some(2017),
1010
organizationName := "Lightbend Inc. <https://www.lightbend.com>",
1111
licenses := List(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt"))),

0 commit comments

Comments
 (0)