From afb681f4a030da8f258acd946e173c213d8de35e Mon Sep 17 00:00:00 2001 From: "Val Neekman (AvidCoder)" Date: Mon, 31 Jan 2022 16:39:25 -0500 Subject: [PATCH] add upgrade github/action --- .github/workflows/ci.yml | 6 +++--- .github/workflows/dev.yml | 6 +++--- .github/workflows/main.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab3720f..24ffb8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,15 +32,15 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install coveralls + pip install coveralls --upgrade pip install "django~=${{ matrix.django-version }}.0" - name: Run flake8 run: | - pip install flake8 + pip install flake8 --upgrade flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run pycodestyle run: | - pip install pycodestyle + pip install pycodestyle --upgrade pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run test run: | diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 5f97e59..6a9c5cc 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -35,15 +35,15 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install coveralls + pip install coveralls --upgrade pip install "django~=${{ matrix.django-version }}.0" - name: Run flake8 run: | - pip install flake8 + pip install flake8 --upgrade flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run pycodestyle run: | - pip install pycodestyle + pip install pycodestyle --upgrade pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run test run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df31e80..6609221 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,15 +33,15 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install coveralls + pip install coveralls --upgrade pip install "django~=${{ matrix.django-version }}.0" - name: Run flake8 run: | - pip install flake8 + pip install flake8 --upgrade flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run pycodestyle run: | - pip install pycodestyle + pip install pycodestyle --upgrade pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run test run: |