From 2ee022b14e6201f9668da178bf3c84c737582b1a Mon Sep 17 00:00:00 2001 From: mapachurro Date: Mon, 4 Nov 2024 10:32:12 -0500 Subject: [PATCH] An attempt to include pip in the PATH of runners during GHA runs. See doc.linea PR #809 for more context. --- spelling/action.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/spelling/action.yml b/spelling/action.yml index 4093eec..05294c6 100644 --- a/spelling/action.yml +++ b/spelling/action.yml @@ -22,6 +22,12 @@ runs: with: python-version: '3.12' + - name: Install Python Dependencies + shell: bash # Specify the shell to avoid missing property error + run: | + python -m pip install --upgrade pip + pip install docutils asciidoctor + # 38bf078c328061f59879b347ca344a718a736018 = v2 as at 24092024 - name: Vale uses: errata-ai/vale-action@38bf078c328061f59879b347ca344a718a736018 @@ -31,6 +37,3 @@ runs: vale_flags: "--config .docs-gha/spelling/.vale.ini --glob={*.md,*.mdx}" # fail_on_error: true reporter: github-pr-check - - - \ No newline at end of file