From 735b0089e9c15e75bf7ec7107941249d889e7cd4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:31:01 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4.0.2 to 4.2.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.2.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.0.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/pip-compile.yml | 6 +++--- .github/workflows/sphinx-docs.yml | 2 +- .github/workflows/tox-tests.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pip-compile.yml b/.github/workflows/pip-compile.yml index c2510354f..c97c3aa85 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.2.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.2.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.2.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 2d09d9277..660d29cf2 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.2.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 598a21be5..60da0ab64 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.2.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.2.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.2.0 with: path: ${{ steps.pip-cache-win.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}