This is an automated email from the ASF dual-hosted git repository.
yao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 7de71a2ec78d [SPARK-49495][DOCS][FOLLOWUP] Fix Pandoc installation for
GitHub Pages publication action
7de71a2ec78d is described below
commit 7de71a2ec78d985c2a045f13c1275101b126cec4
Author: Kent Yao <[email protected]>
AuthorDate: Wed Sep 18 13:54:52 2024 +0800
[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 <[email protected]>
Signed-off-by: Kent Yao <[email protected]>
---
.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 083620427c01..f10dadf315a1 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
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]