Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Cache Java/SBT
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.sbt/
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Cache Java/SBT
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.sbt/
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
find target/scala-*/*coverage-report -type f | zip /tmp/scoverage.zip -@

- name: Upload coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: scoverage
path: /tmp/scoverage.zip
Expand All @@ -147,7 +147,7 @@ jobs:

- name: Cache Java/SBT
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.sbt/
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
echo "jar_path=$jar_path" >> $GITHUB_OUTPUT

- name: Upload JAR artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
env:
JAR_PATH: ${{ steps.find-jar-path.outputs.jar_path }}
SCALA_VERSION: ${{ matrix.scala-version }}
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=3.10.2
version=3.10.4
runner.dialect = "scala213"
trailingCommas = preserve
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inThisBuild(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
scalaVersion := "3.7.4",
crossScalaVersions := Seq("2.12.20", "2.13.16", "3.7.4"),
crossScalaVersions := Seq("2.12.21", "2.13.16", "3.7.4"),
developers := List(
Developer(
"vmandrychenko",
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.11.7
sbt.version = 1.12.0
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ThisBuild / libraryDependencySchemes ++= Seq(
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6")

// Code Coverage
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.4")

// Deployment
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ThisBuild / version := "1.0.9"
ThisBuild / version := "1.0.10"
ThisBuild / versionScheme := Some("semver-spec")
Loading