From 279da8462539ed199f9cba00ac47f1eb6c5e77f6 Mon Sep 17 00:00:00 2001 From: farhan Date: Fri, 15 Sep 2023 08:52:00 +0500 Subject: [PATCH] chore: update github actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1ae5b6e1..e430d5d53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,15 +17,15 @@ jobs: toxenv: [quality, django32, django42] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies run: | - pip install --upgrade setuptools +# pip install --upgrade setuptools pip install -r requirements/ci.txt - name: Run Tests