From 1ffe52df4d1e49dd5fb47d6aae0da2491e890222 Mon Sep 17 00:00:00 2001 From: Brandon N Benton Date: Fri, 28 Jun 2024 20:28:37 -0700 Subject: [PATCH] Update codecov.yml --- .github/workflows/codecov.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 7ebe87a..dbe979e 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -9,9 +9,9 @@ jobs: name: Codecov runs-on: ubuntu-latest 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: 3.9 - name: Install dependencies @@ -24,7 +24,7 @@ jobs: run: | python -m pytest --disable-warnings --cov=./ --cov-report=xml:coverage.xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4.0.1 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml