You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ You do not *need* a separate GitHub Action.
20
20
If you need LaTeX (because you want to convert through to PDF), you should use the `docker://pandoc/latex` image.
21
21
Otherwise, the smaller `docker://pandoc/core` will suffice.
22
22
23
-
It is a good idea to be explicit about the pandoc version you require, such as `docker://pandoc/core:3.5`.
23
+
It is a good idea to be explicit about the pandoc version you require, such as `docker://pandoc/core:3.8`.
24
24
This way, any future breaking changes in pandoc will not affect your workflow.
25
25
You can find out whatever the latest released docker image is on [docker hub](https://hub.docker.com/r/pandoc/core/tags).
26
26
You should avoid specifying *no* tag or the `latest` tag -- these will float to the latest image and will expose your workflow to potentially breaking changes.
@@ -42,10 +42,9 @@ on: push
42
42
43
43
jobs:
44
44
convert_via_pandoc:
45
-
runs-on: ubuntu-22.04
45
+
runs-on: ubuntu-24.04
46
46
steps:
47
-
- uses: docker://pandoc/core:3.5
48
-
with:
47
+
- uses: docker://pandoc/core:3.8
49
48
args: "--help"# gets appended to pandoc command
50
49
```
51
50
@@ -63,10 +62,10 @@ on: push
63
62
64
63
jobs:
65
64
convert_via_pandoc:
66
-
runs-on: ubuntu-22.04
65
+
runs-on: ubuntu-24.04
67
66
steps:
68
67
- run: echo "foo" > input.txt # create an example file
69
-
- uses: docker://pandoc/core:3.5
68
+
- uses: docker://pandoc/core:3.8
70
69
with:
71
70
args: >- # allows you to break string into multiple lines
0 commit comments