Skip to content

Commit 8674589

Browse files
author
Oron Port
committed
update dependencies and fix worflow to use submodules
1 parent 2f2499e commit 8674589

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v3
30+
with:
31+
submodules: true
32+
fetch-depth: 0
3033
- name: Setup Scala
3134
uses: coursier/setup-action@v1
3235
with:

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
publish:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- name: Checkout
16+
uses: actions/checkout@v3
1617
with:
18+
submodules: true
1719
fetch-depth: 0
1820
- uses: coursier/setup-action@v1
1921
with:

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.9.8
1+
version = 3.9.9
22
runner.dialect = scala3
33

44
maxColumn = 100

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ lazy val dependencies =
136136
new {
137137
private val scodecV = "1.2.4"
138138
private val munitV = "1.1.1"
139-
private val airframelogV = "2025.1.14"
139+
private val airframelogV = "2025.1.16"
140140
private val oslibV = "0.9.2"
141141
private val scallopV = "5.2.0"
142142
private val upickleV = "4.2.1"

project/build.properties

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

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
3+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")

0 commit comments

Comments
 (0)