From 5f5ed22640a27bd62bc9a20cef4bb5bd0c6297d9 Mon Sep 17 00:00:00 2001 From: rbbowd Date: Wed, 21 Jan 2026 09:32:37 -0500 Subject: [PATCH] Brickie updates w/ version bump --- .github/workflows/ci.yml | 10 +++++----- .scalafmt.conf | 2 +- build.sbt | 2 +- project/build.properties | 2 +- project/plugins.sbt | 2 +- version.sbt | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 932affe..f8a02f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/ @@ -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/ @@ -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 @@ -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/ @@ -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 }} diff --git a/.scalafmt.conf b/.scalafmt.conf index be66d6f..7482adc 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,3 +1,3 @@ -version=3.10.2 +version=3.10.4 runner.dialect = "scala213" trailingCommas = preserve diff --git a/build.sbt b/build.sbt index bd0ca72..71e78e7 100644 --- a/build.sbt +++ b/build.sbt @@ -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", diff --git a/project/build.properties b/project/build.properties index a360cca..92aa2e4 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.11.7 +sbt.version = 1.12.0 diff --git a/project/plugins.sbt b/project/plugins.sbt index 7d19c5b..3893075 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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") diff --git a/version.sbt b/version.sbt index 1a00dea..8a0af86 100644 --- a/version.sbt +++ b/version.sbt @@ -1,2 +1,2 @@ -ThisBuild / version := "1.0.9" +ThisBuild / version := "1.0.10" ThisBuild / versionScheme := Some("semver-spec")