From 5359d6fffe13b746d742bd14287c385cc0588c5a Mon Sep 17 00:00:00 2001 From: ne-sachirou Date: Thu, 9 May 2024 15:42:52 +0900 Subject: [PATCH] Scala 2.13.14 --- .github/workflows/ci.yml | 7 +++---- build.sbt | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43d98be..aafc624 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,12 @@ jobs: fail-fast: false matrix: jdk: [ 11 ] - scala: [ 2.13.10 ] + scala: [ 2.13.14 ] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 with: distribution: temurin java-version: ${{ matrix.jdk }} cache: sbt - run: sbt -v ++${{ matrix.scala }} test - diff --git a/build.sbt b/build.sbt index fa8432d..3922c38 100644 --- a/build.sbt +++ b/build.sbt @@ -2,9 +2,9 @@ name := "snowflake-lib" version := "1.1.0-SNAPSHOT" -scalaVersion := "2.13.10" +scalaVersion := "2.13.14" libraryDependencies ++= Seq( - "org.specs2" %% "specs2-core" % "4.8.3" % Test, - "junit" % "junit" % "4.13" % Test + "org.specs2" % "specs2-core_2.13" % "4.20.6" % Test, + "junit" % "junit" % "4.13.2" % Test )