From a81b33f2d74fd4374c6f55682bc5815fec5c7c12 Mon Sep 17 00:00:00 2001 From: Dachary Date: Wed, 30 Nov 2022 09:02:48 -0500 Subject: [PATCH] Fix Readability workflow (#2330) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In an attempt to fix the readability workflow check, I'm updating the workflow to a more recent version of the setup-python GitHub action, updating to a newer version of Python, and removing the x64 architecture since that's the default when unspecified. 🤞 --- .github/workflows/readability.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/readability.yml b/.github/workflows/readability.yml index 108c6e6c0a..6008d57646 100644 --- a/.github/workflows/readability.yml +++ b/.github/workflows/readability.yml @@ -38,11 +38,10 @@ jobs: node ./docdoctor getReadabilityText "$file" done - name: Setup Python - uses: actions/setup-python@v4.1.0 + uses: actions/setup-python@v4.3.0 with: # We need Python version 3.5 or greater for rglob. - python-version: "3.6" - architecture: "x64" + python-version: "3.9" - name: Install textstat run: pip install textstat - name: Create scores directory and save PR number.