diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index a1b3cf2..eee2bd7 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -15,11 +15,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.10' + cache: 'pip' - name: Install dependencies run: | python -m pip install --upgrade pip @@ -34,4 +35,6 @@ jobs: - name: Test with pytest run: | pytest checker/ --cov - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}