Skip to content

Commit

Permalink
Update scala-compiler, scala-library, ... to 2.13.8 (#1061)
Browse files Browse the repository at this point in the history
* Update scala-compiler, scala-library, ... to 2.13.8

* Regenerate workflow with sbt-github-actions

* Update .mergify.yml

Co-authored-by: Frank Thomas <[email protected]>
  • Loading branch information
scala-steward and fthomas authored Feb 2, 2022
1 parent be95bec commit 6205b55
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 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]
scala: [2.12.15, 2.13.7, 3.1.0]
scala: [2.12.15, 2.13.8, 3.1.0]
java: [adopt-hotspot@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: sbt ++${{ matrix.scala }} githubWorkflowCheck

- name: Build project (Scala 2)
if: matrix.scala == '2.12.15' || matrix.scala == '2.13.7'
if: matrix.scala == '2.12.15' || matrix.scala == '2.13.8'
run: sbt ++${{ matrix.scala }} validateJVM validateJS

- name: Build project (Scala 3)
Expand Down Expand Up @@ -119,12 +119,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.7)
- name: Download target directories (2.13.8)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.8-${{ matrix.java }}

- name: Inflate target directories (2.13.7)
- name: Inflate target directories (2.13.8)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pull_request_rules:
conditions:
- author=scala-steward
- status-success=Build and Test (ubuntu-latest, 2.12.15, adopt-hotspot@8)
- status-success=Build and Test (ubuntu-latest, 2.13.7, adopt-hotspot@8)
- status-success=Build and Test (ubuntu-latest, 2.13.8, adopt-hotspot@8)
- status-success=Build and Test (ubuntu-latest, 3.1.0, adopt-hotspot@8)
- body~=labels:.*semver-spec-patch
actions:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val gitPubUrl = s"https://github.com/$gitHubOwner/$projectName.git"
val gitDevUrl = s"[email protected]:$gitHubOwner/$projectName.git"

val Scala_2_12 = "2.12.15"
val Scala_2_13 = "2.13.7"
val Scala_2_13 = "2.13.8"
val Scala_3 = "3.1.0"

val catsVersion = "2.7.0"
Expand Down

0 comments on commit 6205b55

Please sign in to comment.