From 734336006e61abe393b543e326e2713e04692e07 Mon Sep 17 00:00:00 2001 From: randymcmillan Date: Mon, 17 Jun 2024 13:06:41 -0400 Subject: [PATCH] .github/workflows/codespell.yml:use pipx to install codespell --- .github/workflows/codespell.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 118876091..5b46a46d9 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -24,11 +24,11 @@ jobs: - name: install-codespell-asciidoctor run: | export DEBIAN_FRONTEND=noninteractive - sudo apt list --upgradable - sudo apt upgrade -y - sudo apt update -y - sudo apt install apt-utils asciidoctor python3-pip golang-go -y - pip3 install -U codespell + sudo apt-get upgrade -y + sudo apt-get update -y + sudo apt-get install apt-utils asciidoctor pipx python3-pip golang-go -y --fix-missing + pipx ensurepath + pipx install codespell - name: markdown-syntax if: ${{ !env.ACT }} run: |