Skip to content

Commit dc691f0

Browse files
committed
Update sbt and plugins to fix generated github action workflow
1 parent be0b842 commit dc691f0

3 files changed

Lines changed: 22 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
timeout-minutes: 60
3535
steps:
36+
- name: Install sbt
37+
if: contains(runner.os, 'macos')
38+
shell: bash
39+
run: brew install sbt
40+
3641
- name: Ignore line ending differences in git
3742
if: contains(runner.os, 'windows')
3843
shell: bash
@@ -107,6 +112,10 @@ jobs:
107112
java: [temurin@11]
108113
runs-on: ${{ matrix.os }}
109114
steps:
115+
- name: Install sbt
116+
if: contains(runner.os, 'macos')
117+
run: brew install sbt
118+
110119
- name: Ignore line ending differences in git
111120
if: contains(runner.os, 'windows')
112121
run: git config --global core.autocrlf false
@@ -172,6 +181,10 @@ jobs:
172181
java: [temurin@11]
173182
runs-on: ${{ matrix.os }}
174183
steps:
184+
- name: Install sbt
185+
if: contains(runner.os, 'macos')
186+
run: brew install sbt
187+
175188
- name: Ignore line ending differences in git
176189
if: contains(runner.os, 'windows')
177190
run: git config --global core.autocrlf false
@@ -208,6 +221,10 @@ jobs:
208221
java: [temurin@11]
209222
runs-on: ${{ matrix.os }}
210223
steps:
224+
- name: Install sbt
225+
if: contains(runner.os, 'macos')
226+
run: brew install sbt
227+
211228
- name: Ignore line ending differences in git
212229
if: contains(runner.os, 'windows')
213230
run: git config --global core.autocrlf false
@@ -235,7 +252,7 @@ jobs:
235252

236253
- name: Publish site
237254
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
238-
uses: peaceiris/actions-gh-pages@v3.9.3
255+
uses: peaceiris/actions-gh-pages@v4.0.0
239256
with:
240257
github_token: ${{ secrets.GITHUB_TOKEN }}
241258
publish_dir: site/target/docs/site

project/build.properties

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

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
22
addSbtPlugin("org.bytedeco" % "sbt-javacpp" % "1.17")
3-
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2")
3+
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.3")
44
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
5-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.5")
6-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.5")
5+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
6+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")

0 commit comments

Comments
 (0)