From 864adff734e8a37f87670f169d1156f62c95a59b Mon Sep 17 00:00:00 2001 From: Signal Linden Date: Thu, 1 Feb 2024 08:38:15 -0800 Subject: [PATCH] Bump codecov-action to v4 --- .github/workflows/ci.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 874de0c..a8a9f76 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,10 +11,14 @@ jobs: name: Test & Build strategy: matrix: - python-version: ['2.7', '3.7', '3.8', '3.10'] + python-version: ['3.7', '3.8', '3.10'] + image-variant: [''] + include: + - python-version: '2.7' + image-variant: '-buster' runs-on: [ubuntu-latest] container: - image: "python:${{ matrix.python-version }}-buster" + image: "python:${{ matrix.python-version }}${{ matrix.image-variant }}" env: PYTHON: ${{ matrix.python-version }} steps: @@ -44,7 +48,7 @@ jobs: run: python -m build - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 if: matrix.python-version == '3.10' with: token: ${{ secrets.CODECOV_TOKEN }}