diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9aec3c7..03fb346 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -7,7 +7,8 @@ jobs: matrix: python-version: ['3.8'] steps: - - uses: actions/checkout@v3 + - name: Checkout repository + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 @@ -25,7 +26,7 @@ jobs: poetry run pytest --cov=./ --cov-report=xml - name: Upload Coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos fail_ci_if_error: true # optional (default = false)