From be12be2b794cd9b590c6f043dbe91f8bf9345237 Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Sat, 27 Dec 2025 15:02:46 +0000 Subject: [PATCH] GHA CI: Bump `pandoc` version https://github.com/jgm/pandoc/releases/ PR #23638. --- .github/workflows/ci_file_health.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_file_health.yaml b/.github/workflows/ci_file_health.yaml index 852269275..ac4338b3b 100644 --- a/.github/workflows/ci_file_health.yaml +++ b/.github/workflows/ci_file_health.yaml @@ -31,12 +31,13 @@ jobs: - name: Check doc env: pandoc_path: "${{ github.workspace }}/../pandoc" + pandoc_version: "3.8.3" run: | # install pandoc curl \ -L \ -o "${{ runner.temp }}/pandoc.tar.gz" \ - "https://github.com/jgm/pandoc/releases/download/3.7.0.2/pandoc-3.7.0.2-linux-amd64.tar.gz" + "https://github.com/jgm/pandoc/releases/download/${{ env.pandoc_version }}/pandoc-${{ env.pandoc_version }}-linux-amd64.tar.gz" tar -xf "${{ runner.temp }}/pandoc.tar.gz" -C "${{ github.workspace }}/.." mv "${{ github.workspace }}/.."/pandoc-* "${{ env.pandoc_path }}" # run pandoc