-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update scala-compiler, scala-library, ... to 2.13.6 (#970)
- Loading branch information
1 parent
842c3f5
commit 1bc81cd
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.12.13, 2.13.5, 3.0.0] | ||
scala: [2.12.13, 2.13.6, 3.0.0] | ||
java: [[email protected]] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -53,7 +53,7 @@ jobs: | |
run: sbt ++${{ matrix.scala }} githubWorkflowCheck | ||
|
||
- name: Build project (Scala 2) | ||
if: matrix.scala == '2.12.13' || matrix.scala == '2.13.5' | ||
if: matrix.scala == '2.12.13' || matrix.scala == '2.13.6' | ||
run: sbt ++${{ matrix.scala }} validateJVM validateJS | ||
|
||
- name: Build project (Scala 3) | ||
|
@@ -115,12 +115,12 @@ jobs: | |
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.13.5) | ||
- name: Download target directories (2.13.6) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }} | ||
|
||
- name: Inflate target directories (2.13.5) | ||
- name: Inflate target directories (2.13.6) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ val gitPubUrl = s"https://github.com/$gitHubOwner/$projectName.git" | |
val gitDevUrl = s"[email protected]:$gitHubOwner/$projectName.git" | ||
|
||
val Scala_2_12 = "2.12.13" | ||
val Scala_2_13 = "2.13.5" | ||
val Scala_2_13 = "2.13.6" | ||
val Scala_3 = "3.0.0" | ||
|
||
val catsVersion = "2.6.1" | ||
|