summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-02-26 12:42:38 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-02-26 22:12:02 +0100
commitacddbc57d9072d78a3e3ae56c6c9d28c7daab2d5 (patch)
tree57fe9f8947f65deee3119117c8eb875f1084e03e /.github
parent64a0d1ef6e7a6739148996e9584bbb61fe3dcc60 (diff)
downloaddjango-acddbc57d9072d78a3e3ae56c6c9d28c7daab2d5.tar.gz
Changed "pip3 install" to "python -m pip install" in GitHub actions workflows.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linters.yml4
1 files 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: