This is an automated email from the ASF dual-hosted git repository.
jeremyyao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-site.git
The following commit(s) were added to refs/heads/main by this push:
new bd117e8 use pandoc 3.8.3 in update-docs workflow
bd117e8 is described below
commit bd117e8e35797251f5500defeb6dd047b4f25ce4
Author: Jeremy Yao <[email protected]>
AuthorDate: Thu Jan 15 14:36:03 2026 -0500
use pandoc 3.8.3 in update-docs workflow
---
.github/workflows/update-docs.yml | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/update-docs.yml
b/.github/workflows/update-docs.yml
index 9225f3a..44843e9 100644
--- a/.github/workflows/update-docs.yml
+++ b/.github/workflows/update-docs.yml
@@ -75,7 +75,18 @@ jobs:
- name: Install Dependencies
run: |
- sudo apt-get install -y libmxml-dev pandoc
+ sudo apt-get update
+ sudo apt-get install -y libmxml-dev
+
+ - name: Install Pandoc 3.8.3
+ run: |
+ PANDOC_VERSION=3.8.3
+ DEB="pandoc-${PANDOC_VERSION}-1-amd64.deb"
+
+ curl -LO
https://github.com/jgm/pandoc/releases/download/${PANDOC_VERSION}/${DEB}
+ sudo dpkg -i ${DEB}
+
+ pandoc --version
- name: Setup Java
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b #
v4.6.0