From 025b1622e07e15167e24cf316132218debeb3a81 Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Wed, 1 May 2024 17:12:32 +0930 Subject: [PATCH 1/3] build: update codecov action version --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e06ddf3..a51e34c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,8 @@ jobs: - name: Run Coverage if: matrix.python-version == '3.8' && matrix.toxenv=='django42-drf314' - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4 with: flags: unittests fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} From 503daa2aeb5b3c9b7906f5b4cc142bd9bc64b018 Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Wed, 15 May 2024 12:01:35 +0930 Subject: [PATCH 2/3] fix: run migrations check without xmlsec --- .github/workflows/migrations-check.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/migrations-check.yml b/.github/workflows/migrations-check.yml index a834e2d..08b3255 100644 --- a/.github/workflows/migrations-check.yml +++ b/.github/workflows/migrations-check.yml @@ -55,8 +55,6 @@ jobs: pip install -r requirements/base.txt pip uninstall -y mysqlclient pip install --no-binary mysqlclient mysqlclient - pip uninstall -y xmlsec - pip install --no-binary xmlsec xmlsec - name: Initiate Services run: | From 1eb1badd650e0b6f4d0ad0022b16e21d9adae141 Mon Sep 17 00:00:00 2001 From: Jillian Date: Thu, 16 May 2024 08:19:41 +0930 Subject: [PATCH 3/3] fix: check coverage for python 3.12, not 3.8 Co-authored-by: Kyle McCormick --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a51e34c..3e5b5ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: tox - name: Run Coverage - if: matrix.python-version == '3.8' && matrix.toxenv=='django42-drf314' + if: matrix.python-version == '3.12' && matrix.toxenv=='django42-drf314' uses: codecov/codecov-action@v4 with: flags: unittests