Skip to content

Commit c825182

Browse files
Update scala-library to 2.13.11 (#547)
* Update scala-library to 2.13.11 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --------- Co-authored-by: typelevel-steward[bot] <106827141+typelevel-steward[bot]@users.noreply.github.com> Co-authored-by: P. Oscar Boykin <[email protected]>
1 parent fec435c commit c825182

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest]
31-
scala: [2.13.10, 2.12.18, 3.3.0]
31+
scala: [2.13.11, 2.12.18, 3.3.0]
3232
java: [temurin@8]
3333
project: [rootJS, rootJVM, rootNative]
3434
runs-on: ${{ matrix.os }}
@@ -150,32 +150,32 @@ jobs:
150150
~/Library/Caches/Coursier/v1
151151
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
152152

153-
- name: Download target directories (2.13.10, rootJS)
153+
- name: Download target directories (2.13.11, rootJS)
154154
uses: actions/download-artifact@v3
155155
with:
156-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJS
156+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJS
157157

158-
- name: Inflate target directories (2.13.10, rootJS)
158+
- name: Inflate target directories (2.13.11, rootJS)
159159
run: |
160160
tar xf targets.tar
161161
rm targets.tar
162162
163-
- name: Download target directories (2.13.10, rootJVM)
163+
- name: Download target directories (2.13.11, rootJVM)
164164
uses: actions/download-artifact@v3
165165
with:
166-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJVM
166+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJVM
167167

168-
- name: Inflate target directories (2.13.10, rootJVM)
168+
- name: Inflate target directories (2.13.11, rootJVM)
169169
run: |
170170
tar xf targets.tar
171171
rm targets.tar
172172
173-
- name: Download target directories (2.13.10, rootNative)
173+
- name: Download target directories (2.13.11, rootNative)
174174
uses: actions/download-artifact@v3
175175
with:
176-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootNative
176+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootNative
177177

178-
- name: Inflate target directories (2.13.10, rootNative)
178+
- name: Inflate target directories (2.13.11, rootNative)
179179
run: |
180180
tar xf targets.tar
181181
rm targets.tar
@@ -259,7 +259,7 @@ jobs:
259259
strategy:
260260
matrix:
261261
os: [ubuntu-latest]
262-
scala: [2.13.10]
262+
scala: [2.13.11]
263263
java: [temurin@11]
264264
runs-on: ${{ matrix.os }}
265265
steps:

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
val Scala212 = "2.12.18"
2-
val Scala213 = "2.13.10"
2+
val Scala213 = "2.13.11"
33
val Scala3Version = "3.3.0"
44

55
ThisBuild / tlBaseVersion := "0.4"
@@ -13,7 +13,7 @@ ThisBuild / githubWorkflowAddedJobs +=
1313
WorkflowJob(
1414
id = "coverage",
1515
name = "Generate coverage report",
16-
scalas = List("2.13.10"),
16+
scalas = List("2.13.11"),
1717
steps = List(WorkflowStep.Checkout) ++ WorkflowStep.SetupJava(
1818
githubWorkflowJavaVersions.value.toList
1919
) ++ githubWorkflowGeneratedCacheSteps.value ++ List(

0 commit comments

Comments
 (0)