Skip to content

Commit a81b33f

Browse files
authored
Fix Readability workflow (#2330)
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. 🤞
1 parent e8f0875 commit a81b33f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/readability.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,10 @@ jobs:
3838
node ./docdoctor getReadabilityText "$file"
3939
done
4040
- name: Setup Python
41-
uses: actions/setup-python@v4.1.0
41+
uses: actions/setup-python@v4.3.0
4242
with:
4343
# We need Python version 3.5 or greater for rglob.
44-
python-version: "3.6"
45-
architecture: "x64"
44+
python-version: "3.9"
4645
- name: Install textstat
4746
run: pip install textstat
4847
- name: Create scores directory and save PR number.

0 commit comments

Comments
 (0)