From 76e2cfe53e10abfd928b5d1cefe96e40d28b0aee Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 5 Jan 2025 11:15:20 -0500 Subject: [PATCH] Revert "Upgrade `mdbook-pandoc` to fix missing images in PDFs" (#2540) Reverts google/comprehensive-rust#2531 This accidentally broke the build because the Persian translation doesn't build with this version. --- .github/workflows/install-mdbook/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/install-mdbook/action.yml b/.github/workflows/install-mdbook/action.yml index 41a335ad..406576d7 100644 --- a/.github/workflows/install-mdbook/action.yml +++ b/.github/workflows/install-mdbook/action.yml @@ -17,11 +17,11 @@ runs: - name: Install mdbook-pandoc and related dependencies run: | - cargo install mdbook-pandoc --locked --version 0.8.0 + cargo install mdbook-pandoc --locked --version 0.7.0 sudo apt-get update sudo apt-get install -y texlive texlive-luatex texlive-lang-cjk librsvg2-bin fonts-noto - curl -LsSf https://github.com/jgm/pandoc/releases/download/3.6.1/pandoc-3.6.1-linux-amd64.tar.gz | tar zxf - - echo "$PWD/pandoc-3.6.1/bin" >> $GITHUB_PATH + curl -LsSf https://github.com/jgm/pandoc/releases/download/3.2.1/pandoc-3.2.1-linux-amd64.tar.gz | tar zxf - + echo "$PWD/pandoc-3.2.1/bin" >> $GITHUB_PATH shell: bash - name: Install mdbook-i18n-helpers