Skip to content

Update scala3-library to 3.3.6 #667

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
scala: [2.12.20, 2.13.16, 3.3.5]
scala: [2.12.20, 2.13.16, 3.3.6]
java: [temurin@21]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -51,11 +51,11 @@ jobs:
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck

- name: Build Scala 2 project
if: matrix.scala != '3.3.5'
if: matrix.scala != '3.3.6'
run: sbt '++ ${{ matrix.scala }}' test

- name: Build Scala 3 project
if: matrix.scala == '3.3.5'
if: matrix.scala == '3.3.6'
run: sbt '++ ${{ matrix.scala }}' sphere-util/test sphere-json-core/test sphere-mongo-core/test

- name: Compress target directories
Expand Down Expand Up @@ -114,12 +114,12 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.3.5)
- name: Download target directories (3.3.6)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }}
name: target-${{ matrix.os }}-3.3.6-${{ matrix.java }}

- name: Inflate target directories (3.3.5)
- name: Inflate target directories (3.3.6)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import pl.project13.scala.sbt.JmhPlugin

lazy val scala212 = "2.12.20"
lazy val scala213 = "2.13.16"
lazy val scala3 = "3.3.5"
lazy val scala3 = "3.3.6"

// sbt-github-actions needs configuration in `ThisBuild`
ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3)
Expand Down