From 2c100fdee917969847bd264885881c46db995e0f Mon Sep 17 00:00:00 2001 From: Bruno Michetti Date: Fri, 9 Aug 2024 14:26:58 -0300 Subject: [PATCH] Fix python version in github actions --- .github/workflows/drip-django.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/drip-django.yaml b/.github/workflows/drip-django.yaml index 3dee796..d052958 100644 --- a/.github/workflows/drip-django.yaml +++ b/.github/workflows/drip-django.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: include: - # python 3.4 + # python 3.5 - python-version: "3.5" django-version: "2.2" # python 3.6 @@ -70,21 +70,21 @@ jobs: django-version: "4.2" - python-version: "pypy3" django-version: "5.2" - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python version ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Installing resources run: | - pip install --upgrade pip==20.0.2 + pip install pip pip install pipenv - name: Installing requirements pipenv run: |