diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 670665d..d2fcfaa 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -30,7 +30,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT echo "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT - name: pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: py${{ matrix.python-version }}-${{ matrix.os }}-pip diff --git a/.github/workflows/pythontests.yml b/.github/workflows/pythontests.yml index a83d41e..842e243 100644 --- a/.github/workflows/pythontests.yml +++ b/.github/workflows/pythontests.yml @@ -34,7 +34,7 @@ jobs: python -m pip install -U pip # to ensure version > 20 to have cache dir echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: pip cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: py${{ matrix.python-version }}-${{ matrix.os }}-pip