Skip to content

Commit

Permalink
upgrade scala
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Sep 15, 2024
1 parent f3e1acf commit 51bd8e7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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.19]
scala: [2.12.20]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.19]
scala: [2.12.20]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -79,12 +79,12 @@ jobs:
java-version: 8
cache: sbt

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

- name: Inflate target directories (2.12.19)
- name: Inflate target directories (2.12.20)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ scalacOptions ++= {
} else Nil
}

ThisBuild / scalaVersion := "2.12.19"
ThisBuild / scalaVersion := "2.12.20"

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test
Expand All @@ -56,7 +56,7 @@ developers := List(
Developer(id = "pjfanning", name = "PJ Fanning", email = "", url = url("https://github.com/pjfanning"))
)

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")
addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.11")

ThisBuild / githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("test")))
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.0
sbt.version=1.10.1

0 comments on commit 51bd8e7

Please sign in to comment.