Skip to content

Commit

Permalink
Update sbt, libraries and compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
OndrejSpanel committed Sep 16, 2024
1 parent f6c2416 commit 6bd732c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: '11'
- name: Run tests
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: '11'
- name: Build
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: '11'
- name: Build
env:
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ def generateIndexTask(index: String, suffix: String) = Def.task {
}

lazy val commonSettings = Seq(
scalaVersion := "3.3.3",
version := "0.3.0",
libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "2.3.0",
libraryDependencies += "org.scalatest" %%% "scalatest" % "3.2.18" % "test"
scalaVersion := "3.5.0",
version := "0.4.0",
libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "2.4.0",
libraryDependencies += "org.scalatest" %%% "scalatest" % "3.2.19" % "test"
)
lazy val root = project.in(file(".")).
aggregate(pJVM, pJS).
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.2

0 comments on commit 6bd732c

Please sign in to comment.