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

bump libs #220

Merged
merged 1 commit into from
Nov 26, 2024
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
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: [email protected]
- 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")