From 8692b3805f89a646f013451534ac8e967afc4ba6 Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Wed, 16 Oct 2024 08:04:13 +0200 Subject: [PATCH] fix: install additional deps on doc-style action for rST support (#614) --- doc-style/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc-style/action.yml b/doc-style/action.yml index aa34dfecf..39cbc3bbc 100644 --- a/doc-style/action.yml +++ b/doc-style/action.yml @@ -134,6 +134,11 @@ runs: run: | python -m pip install --upgrade pip toml==${{ inputs.toml-version }} + - name: "Install docutils" + shell: bash + run: | + python -m pip install --upgrade pip docutils + - name: "Get towncrier directory" shell: python run: | @@ -171,7 +176,7 @@ runs: fi - name: "Run Vale" - uses: errata-ai/vale-action@reviewdog + uses: errata-ai/vale-action@v2.1.1 env: GITHUB_TOKEN: ${{ inputs.token }} with: