From 5a0d1f0ecb4ec2dc82bea7f70ab88c2ca5f8c630 Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Fri, 15 Nov 2024 10:36:01 +0000 Subject: [PATCH] ci: update deploy-mdbooks action to fix mermaid display issue (#3289) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ Update `deploy-mdbooks` action version. ## Why ❔ To fix displaying of Mermaid diagrams. ## Checklist - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] Code has been formatted via `zkstack dev fmt` and `zkstack dev lint`. --- .github/workflows/deploy-core-docs.yml | 2 +- .github/workflows/deploy-prover-docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-core-docs.yml b/.github/workflows/deploy-core-docs.yml index dc7738af8428..f01c56f68c3c 100644 --- a/.github/workflows/deploy-core-docs.yml +++ b/.github/workflows/deploy-core-docs.yml @@ -57,7 +57,7 @@ jobs: echo "version=${VERSION}" >> "${GITHUB_OUTPUT}" - name: Deploy core docs - uses: matter-labs/deploy-mdbooks@77856145362bf23834f2e54a44a928790c4bee7c # v1 + uses: matter-labs/deploy-mdbooks@73f638643d1be948d1002fe5433747f4a3e37a29 # v1 with: version: ${{ inputs.version || steps.extract-version.outputs.version || github.ref_name }} docs-dir: ${{ env.DOCS_DIR }} diff --git a/.github/workflows/deploy-prover-docs.yml b/.github/workflows/deploy-prover-docs.yml index 007e96f61e58..7f797c61cf5a 100644 --- a/.github/workflows/deploy-prover-docs.yml +++ b/.github/workflows/deploy-prover-docs.yml @@ -57,7 +57,7 @@ jobs: echo "version=${VERSION}" >> "${GITHUB_OUTPUT}" - name: Deploy prover docs - uses: matter-labs/deploy-mdbooks@77856145362bf23834f2e54a44a928790c4bee7c # v1 + uses: matter-labs/deploy-mdbooks@73f638643d1be948d1002fe5433747f4a3e37a29 # v1 with: version: ${{ inputs.version || steps.extract-version.outputs.version || github.ref_name }} docs-dir: ${{ env.DOCS_DIR }}