Skip to content

Commit

Permalink
Upgrade dependencies (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexITC authored Oct 20, 2024
1 parent 9cc7909 commit 564c3bb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ on:
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v13
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
cache: sbt
- uses: sbt/setup-sbt@v1
- run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ lazy val commonSettings = Def.settings(
organization := "net.wiringbits",
libraryDependencies ++= Seq(
"org.wartremover" % "wartremover" % wartremover.Wart.PluginVersion cross CrossVersion.full,
"org.scalatest" %% "scalatest" % "3.2.16" % "test"
"org.scalatest" %% "scalatest" % "3.2.18" % "test"
)
)

Expand All @@ -41,7 +41,7 @@ lazy val catsEffectWarts = project
commonSettings,
name := "cats-effect-warts",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.3.5"
"org.typelevel" %% "cats-effect" % "3.5.4"
)
)

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.6.2
sbt.version=1.9.8
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "3.2.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.8.0")

0 comments on commit 564c3bb

Please sign in to comment.