Skip to content

Commit 4f8efbe

Browse files
authored
377 - fix deployment - update dependencies (#378)
1 parent 8c4defa commit 4f8efbe

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
steps:
3030
- name: Checkout current branch (full)
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434

@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ${{ matrix.os }}
7878
steps:
7979
- name: Checkout current branch (full)
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v5
8181
with:
8282
fetch-depth: 0
8383

.github/workflows/clean.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ name: Clean
99

1010
on: push
1111

12+
permissions:
13+
actions: write
14+
1215
jobs:
1316
delete-artifacts:
1417
name: Delete Artifacts

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val scala212 = "2.12.20"
22
lazy val scala213 = "2.13.16"
33
lazy val scala330 = "3.3.4"
44

5-
val fs2Version = "3.12.0"
5+
val fs2Version = "3.12.2"
66

77
inThisBuild(
88
List(

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.11.4
1+
sbt.version = 1.11.6

project/plugins.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
2-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
3-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
4-
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")
1+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.1")
2+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")
3+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
4+
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.27.0")

0 commit comments

Comments
 (0)