diff --git a/.github/workflows/pip-compile.yml b/.github/workflows/pip-compile.yml index f14cd121d..e9f0d632d 100644 --- a/.github/workflows/pip-compile.yml +++ b/.github/workflows/pip-compile.yml @@ -67,7 +67,7 @@ jobs: - name: cache dependencies if: ${{ matrix.os != 'windows-latest' }} - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini', 'requirements-dev*.in') }} @@ -76,7 +76,7 @@ jobs: - name: cache dependencies (Windows) if: ${{ matrix.os == 'windows-latest' }} - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache-win.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini', 'requirements-dev*.in') }} @@ -140,7 +140,7 @@ jobs: run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: cache dependencies - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini', '**/requirements-dev*.in', '**/docker/pip-tools/*-requirements.in') }} diff --git a/.github/workflows/sphinx-docs.yml b/.github/workflows/sphinx-docs.yml index 652a7b135..b55bdfe58 100644 --- a/.github/workflows/sphinx-docs.yml +++ b/.github/workflows/sphinx-docs.yml @@ -44,7 +44,7 @@ jobs: run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: cache dependencies - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }} diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index d12838e68..9a5cf64af 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -54,7 +54,7 @@ jobs: run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: cache dependencies - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }} @@ -106,7 +106,7 @@ jobs: - name: cache dependencies if: ${{ matrix.os != 'windows-latest' }} - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }} @@ -115,7 +115,7 @@ jobs: - name: cache dependencies (Windows) if: ${{ matrix.os == 'windows-latest' }} - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ steps.pip-cache-win.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}