From d4f861e1deeecae5cb06b10130b2b29785acaa09 Mon Sep 17 00:00:00 2001 From: Michael Sleigh Date: Mon, 27 Jan 2025 14:32:31 +0000 Subject: [PATCH] Fix sphinx-action version Deployed site does not look right, one error as a possible cause is use of an old version of Sphinx (2.4.4) due to choice of master tag of https://github.com/ammaraskar/sphinx-action. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26833db..c8feb67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - name: Build Sphinx documentation - uses: ammaraskar/sphinx-action@master + uses: ammaraskar/sphinx-action@8.1.3 with: docs-folder: "${{ matrix.language }}/" pre-build-command: "pip install -r requirements.txt"