Skip to content

Commit a3685b6

Browse files
committed
feature: use the latest version of pandoc in CI
1 parent 42f06d4 commit a3685b6

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ jobs:
9191
run: sbt ci-release
9292

9393
- name: Install Pandoc 🏁
94-
uses: r-lib/actions/setup-pandoc@v1
94+
uses: r-lib/actions/setup-pandoc@v2
9595
with:
96-
pandoc-version: 2.7.3
96+
pandoc-version: latest
9797

9898
- name: Generate the specs2 website 📚
9999
run: sbt unidoc 'guide/testOnly *Website -- xonly'

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,8 @@ lazy val releaseSettings: Seq[Setting[_]] = Seq(
384384
),
385385
WorkflowStep.Use(
386386
name = Some("Install Pandoc 🏁"),
387-
ref = UseRef.Public("r-lib/actions", "setup-pandoc", "v1"),
388-
params = Map("pandoc-version" -> "2.7.3")
387+
ref = UseRef.Public("r-lib/actions", "setup-pandoc", "v2"),
388+
params = Map("pandoc-version" -> "latest")
389389
),
390390
WorkflowStep
391391
.Sbt(

guide/src/test/scala/org/specs2/guide/HtmlOutput.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ You can use the following arguments to change the HTML generation:
4040
[Markdown](http://commonmark.org) text is supported if [Pandoc](http://johnmacfarlane.net/pandoc) is available on the command line and
4141
if the `!pandoc` boolean flag is not set.
4242

43-
_NOTE!!!_: the currently supported version of Pandoc is `2.3`.
44-
4543
Name | Default value | Description
4644
----------------------- | --------------------------------------------------------------------------------- | ------------------------------
4745
`pandoc` | `true` | set to `false` by passing `!pandoc`

0 commit comments

Comments
 (0)