diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 213f763..b479f4f 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -30,7 +30,7 @@ jobs: # 3. Cache pip dependencies based on pyproject.toml and setup.cfg (if any) - name: Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/setup.cfg') }} @@ -49,7 +49,7 @@ jobs: # 6. Cache test dependencies - name: Cache test dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-test-${{ hashFiles('**/pyproject.toml') }}