diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index fbc403b..04958a7 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -22,7 +22,7 @@ jobs: python-version: "3.10" - name: Cache pip dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-quality-${{ hashFiles('requirements-dev.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c336a8..c67cfc7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache pip dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements-dev.txt') }}