Skip to content

Commit

Permalink
Merge pull request #43 from BlackAnubis7/lab-4
Browse files Browse the repository at this point in the history
Bump sbt and dependencies versions, bump Java in CI
  • Loading branch information
balis committed Oct 25, 2023
2 parents b0864c4 + 98cefe4 commit 18f354b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11
- name: Run tests
run: sbt test
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "EShop"

version := "0.3"
version := "0.4"

scalaVersion := "2.13.6"

val akkaVersion = "2.6.16"
val akkaVersion = "2.6.20"

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
Expand All @@ -18,8 +18,8 @@ libraryDependencies ++= Seq(
"org.iq80.leveldb" % "leveldb" % "0.12",
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8",
"com.github.dnvriend" %% "akka-persistence-inmemory" % "2.5.15.2",
"org.scalatest" %% "scalatest" % "3.2.9" % "test",
"ch.qos.logback" % "logback-classic" % "1.2.6"
"org.scalatest" %% "scalatest" % "3.2.14" % "test",
"ch.qos.logback" % "logback-classic" % "1.4.4"
)

// scalaFmt
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.5.5
sbt.version=1.7.1

0 comments on commit 18f354b

Please sign in to comment.