Skip to content

Commit

Permalink
chore: upgrade dependencies (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
ex0ns authored Oct 13, 2023
1 parent b2c7d35 commit 3e1c1a8
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- name: Check code format
uses: jrouly/scalafmt-native-action@v1
with:
version: "3.7.4"
version: "3.7.14"
arguments: "-c .scalafmt.conf --test core akka examples"
- uses: jodersky/[email protected]
with:
mill-version: 0.11.0
mill-version: 0.11.5
- name: Compile
run: mill '_._[_].compile'
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v2
- uses: jodersky/[email protected]
with:
mill-version: 0.11.0
mill-version: 0.11.5
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: actions/checkout@v2
- uses: jodersky/[email protected]
with:
mill-version: 0.11.0
mill-version: 0.11.5
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
Expand Down
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.11.5
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.7.4"
version = "3.7.14"
maxColumn = 120

runner.dialect = scala213
Expand Down
18 changes: 9 additions & 9 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ import mill._
import mill.scalalib._
import mill.scalalib.publish._

val ScalaVersions = Seq("2.12.16", "2.13.11")
val ScalaVersions = Seq("2.12.18", "2.13.12")

object library {

object Version {
val circe = "0.14.5"
val circe = "0.14.6"
val circeGenericExtras = "0.14.3"
val cats = "2.9.0"
val cats = "2.10.0"
val catsEffect = "2.5.5"
val catsEffect3 = "3.5.0"
val zio = "2.0.15"
val catsEffect3 = "3.5.2"
val zio = "2.0.18"
val zhttp = "2.0.0-RC10"
val zioInteropCats = "23.0.0.6"
val sttp = "3.8.15"
val scalaTest = "3.2.16"
val zioInteropCats = "23.0.0.8"
val sttp = "3.8.16"
val scalaTest = "3.2.17"
val scalaMockScalaTest = "5.2.0"
val scalaLogging = "3.9.5"
val logback = "1.4.7"
val logback = "1.4.11"
val scalajHttp = "2.4.2"
val akkaVersion = "2.6.20"
val akkaActor = akkaVersion
Expand Down
8 changes: 4 additions & 4 deletions examples/src/PokerBot.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ class PokerBot(token: String) extends ExampleBot(token) with Polling with Comman
ackCallback(text = Some("Hello Pepe"), url = Some("https://t.me/MenialBot?start=1234")).void
} getOrElse Future.successful(())

// You must acknowledge callback queries, even if there's no response.
// e.g. just ackCallback()
// You must acknowledge callback queries, even if there's no response.
// e.g. just ackCallback()

// To open game, you may need to pass extra (url-encoded) information to the game.
// ackCallback(url = Some("https://my.awesome.game.com/awesome"))
// To open game, you may need to pass extra (url-encoded) information to the game.
// ackCallback(url = Some("https://my.awesome.game.com/awesome"))
}

def replyWithGame(
Expand Down

0 comments on commit 3e1c1a8

Please sign in to comment.