Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Dependencies #49

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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 @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
scala: [3.5.0]
scala: [3.6.1]
java: [zulu@17, zulu@20]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.5.0]
scala: [3.6.1]
java: [zulu@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -163,12 +163,12 @@ jobs:
- name: Setup sbt
uses: sbt/setup-sbt@v1

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

- name: Inflate target directories (3.5.0)
- name: Inflate target directories (3.6.1)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=17.0.12-zulu
java=17.0.13-tem
2 changes: 1 addition & 1 deletion project/BuildSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.util
object BuildSettings {
private val javaVersion = 17
private val env: util.Map[String, String] = System.getenv()
val scalaV = "3.5.0"
val scalaV = "3.6.1"

lazy val basicSettings: Seq[Def.Setting[?]] = Seq(
homepage := Some(URI.create("https://github.com/austek/pact-avro-plugin").toURL),
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import sbt.librarymanagement.syntax.ExclusionRule
object Dependencies extends DependencyUtils {

object Versions {
val assertjCore = "3.26.3"
val assertjCore = "3.27.2"
val avro = "1.12.0"
val jupiterInterface = "0.13.0"
val logback = "1.5.7"
val pact = "4.6.14"
val jupiterInterface = "0.13.3"
val logback = "1.5.16"
val pact = "4.6.16"
val pactDriverCore = "0.5.1"
val pulsar4sVersion = "2.10.0"
val scalacheck = "1.18.0"
val scalacheck = "1.18.1"
val scalaLogging = "3.9.5"
val scalaTest = "3.2.19"
val slf4jApi = "2.0.6"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty"
sbt.version = 1.10.1
sbt.version = 1.10.7
2 changes: 1 addition & 1 deletion project/builds.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
libraryDependencies ++= List(
"com.lihaoyi" %% "upickle" % "4.0.1"
"com.lihaoyi" %% "upickle" % "4.1.0"
)
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("com.github.sbt.junit" % "sbt-jupiter-interface" % "0.13.0")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.0")
addSbtPlugin("com.github.sbt.junit" % "sbt-jupiter-interface" % "0.13.3")
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
2 changes: 1 addition & 1 deletion project/sbt-avro.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.5.0")
addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.5.1")

libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.12.0"
Loading