From 7de71a2ec78d985c2a045f13c1275101b126cec4 Mon Sep 17 00:00:00 2001 From: Kent Yao Date: Wed, 18 Sep 2024 13:54:52 +0800 Subject: [PATCH] [SPARK-49495][DOCS][FOLLOWUP] Fix Pandoc installation for GitHub Pages publication action ### What changes were proposed in this pull request? Action 'pandoc/actions/setup' is now allowed by the ASF organization account. This followup makes the installation step manual. ### Why are the changes needed? fix ci ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? https://github.com/yaooqinn/spark/actions/runs/10914663049/job/30293151174 ### Was this patch authored or co-authored using generative AI tooling? no Closes #48136 from yaooqinn/SPARK-49495-F. Authored-by: Kent Yao Signed-off-by: Kent Yao --- .github/workflows/pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 083620427c015..f10dadf315a1b 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -63,9 +63,9 @@ jobs: ruby-version: '3.3' bundler-cache: true - name: Install Pandoc - uses: pandoc/actions/setup@d6abb76f6c8a1a9a5e15a5190c96a02aabffd1ee - with: - version: 3.3 + run: | + sudo apt-get update -y + sudo apt-get install pandoc - name: Install dependencies for documentation generation run: | cd docs