Skip to content

Commit

Permalink
Merge pull request #220 from laserdisc-io/upgrades
Browse files Browse the repository at this point in the history
bump libs
  • Loading branch information
barryoneill authored Nov 26, 2024
2 parents 44bef2a + f819778 commit 602cba1
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 58 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
pull_request:
branches: ['*']
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Java And Sbt
uses: olafurpg/setup-scala@v14
with:
java-version: corretto@1.17
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.cache/coursier/v1
~/.sbt
key: sbt-${{ hashFiles('**/build.sbt') }}
- name: Run tests
run: sbt build

47 changes: 0 additions & 47 deletions .github/workflows/ci.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down
16 changes: 7 additions & 9 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,18 @@ object Dependencies {
).map(_ % Test)
)

val Slack = libraryDependencies += "com.slack.api" % "slack-app-backend" % "1.44.1"
val Slack = libraryDependencies += "com.slack.api" % "slack-app-backend" % "1.44.2"

val Refined = libraryDependencies += "eu.timepit" %% "refined" % "0.11.2"

val NewTypes = libraryDependencies += "io.monix" %% "newtypes-core" % "0.3.0"

val Logging = Seq(
libraryDependencies ++= Seq(
"org.typelevel" %% "log4cats-slf4j" % "2.7.0",
"ch.qos.logback" % "logback-classic" % "1.5.12" % Test,
"ch.qos.logback" % "logback-core" % "1.5.12" % Test,
"org.slf4j" % "jcl-over-slf4j" % "2.0.16" % Test,
"org.slf4j" % "jul-to-slf4j" % "2.0.16" % Test
)
val Logging = libraryDependencies ++= Seq(
"org.typelevel" %% "log4cats-slf4j" % "2.7.0",
"ch.qos.logback" % "logback-classic" % "1.5.12" % Test,
"ch.qos.logback" % "logback-core" % "1.5.12" % Test,
"org.slf4j" % "jcl-over-slf4j" % "2.0.16" % Test,
"org.slf4j" % "jul-to-slf4j" % "2.0.16" % Test
)

val Http4s = libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("io.laserdisc" % "sbt-laserdisc-defaults" % "0.1.1")
addSbtPlugin("io.laserdisc" % "sbt-laserdisc-defaults" % "0.2.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0")

0 comments on commit 602cba1

Please sign in to comment.