Skip to content

Commit 161c874

Browse files
committed
.github/workflows/codespell.yml:use pipx to install codespell
1 parent bc8f5ca commit 161c874

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/codespell.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ jobs:
2424
- name: install-codespell-asciidoctor
2525
run: |
2626
export DEBIAN_FRONTEND=noninteractive
27-
sudo apt list --upgradable
28-
sudo apt upgrade -y
29-
sudo apt update -y
30-
sudo apt install apt-utils asciidoctor python3-pip golang-go -y
31-
pip3 install -U codespell
27+
sudo apt-get update -y
28+
sudo apt-get install apt-utils asciidoctor pipx python3-pip golang-go -y --fix-missing
29+
pipx ensurepath
30+
pipx install codespell
3231
- name: markdown-syntax
3332
if: ${{ !env.ACT }}
3433
run: |

0 commit comments

Comments
 (0)