Skip to content

Commit

Permalink
Update scala-compiler, scala-library, ... to 2.13.11 (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Jun 10, 2023
1 parent da473c6 commit 10387aa
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.18, 2.13.10, 3.3.0]
scala: [2.12.18, 2.13.11, 3.3.0]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
run: sbt githubWorkflowCheck

- name: Build project (Scala 2)
if: matrix.scala == '2.12.18' || matrix.scala == '2.13.10'
if: matrix.scala == '2.12.18' || matrix.scala == '2.13.11'
run: sbt '++ ${{ matrix.scala }}' validateJVM validateJS validateNative

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

- name: Inflate target directories (2.13.10)
- name: Inflate target directories (2.13.11)
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:
- author=scala-steward
- body~=labels:.*early-semver-patch
- status-success=Build and Test (ubuntu-latest, 2.12.18, temurin@8)
- status-success=Build and Test (ubuntu-latest, 2.13.10, temurin@8)
- status-success=Build and Test (ubuntu-latest, 2.13.11, temurin@8)
- status-success=Build and Test (ubuntu-latest, 3.3.0, temurin@8)
actions:
merge: {}
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.18"
val Scala_2_13 = "2.13.10"
val Scala_2_13 = "2.13.11"
val Scala_3 = "3.3.0"

val catsVersion = "2.9.0"
Expand Down

0 comments on commit 10387aa

Please sign in to comment.