From acddbc57d9072d78a3e3ae56c6c9d28c7daab2d5 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 26 Feb 2021 12:42:38 +0100 Subject: [PATCH] Changed "pip3 install" to "python -m pip install" in GitHub actions workflows. --- .github/workflows/linters.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index ca8402bc65..0885b5f010 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -17,7 +17,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3.9 - - run: pip3 install flake8 + - run: python -m pip install flake8 - name: flake8 uses: liskin/gh-problem-matcher-wrap@v1 with: @@ -33,7 +33,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3.9 - - run: pip3 install isort + - run: python -m pip install isort - name: isort uses: liskin/gh-problem-matcher-wrap@v1 with: