From 38aba9ddda0172d943926a2681488b9953d283d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 12:35:28 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-examples-app.yml | 2 +- .github/workflows/ci-tests-app.yml | 2 +- .github/workflows/ci-tests-fabric.yml | 2 +- .github/workflows/ci-tests-pytorch.yml | 4 ++-- .github/workflows/code-checks.yml | 2 +- .github/workflows/docs-build.yml | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-examples-app.yml b/.github/workflows/ci-examples-app.yml index f8941add768c9..18980cbb1b85d 100644 --- a/.github/workflows/ci-examples-app.yml +++ b/.github/workflows/ci-examples-app.yml @@ -67,7 +67,7 @@ jobs: run: python .actions/assistant.py replace_oldest_ver - name: pip wheels cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PYPI_CACHE_DIR }} key: pypi_wheels diff --git a/.github/workflows/ci-tests-app.yml b/.github/workflows/ci-tests-app.yml index 1a0cbbec2f4bf..83caaadebe5f8 100644 --- a/.github/workflows/ci-tests-app.yml +++ b/.github/workflows/ci-tests-app.yml @@ -67,7 +67,7 @@ jobs: run: python .actions/assistant.py replace_oldest_ver - name: pip wheels cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PYPI_CACHE_DIR }} key: pypi_wheels diff --git a/.github/workflows/ci-tests-fabric.yml b/.github/workflows/ci-tests-fabric.yml index 8db2de1f8afc6..7cf7f1469d3d6 100644 --- a/.github/workflows/ci-tests-fabric.yml +++ b/.github/workflows/ci-tests-fabric.yml @@ -90,7 +90,7 @@ jobs: cat requirements/fabric/base.txt - name: pip wheels cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PYPI_CACHE_DIR }} key: pypi_wheels diff --git a/.github/workflows/ci-tests-pytorch.yml b/.github/workflows/ci-tests-pytorch.yml index 92155fcc85954..363c2c9b0e6d1 100644 --- a/.github/workflows/ci-tests-pytorch.yml +++ b/.github/workflows/ci-tests-pytorch.yml @@ -94,7 +94,7 @@ jobs: cat requirements/pytorch/base.txt - name: pip wheels cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PYPI_CACHE_DIR }} key: pypi_wheels @@ -135,7 +135,7 @@ jobs: cache-key: "pypi_wheels" - name: Cache datasets - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: Datasets key: pl-dataset diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index 2c3abccda6b7b..821e7d784bd1d 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -35,7 +35,7 @@ jobs: python-version: '3.10.6' - name: Mypy cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .mypy_cache key: mypy-${{ hashFiles('requirements/typing.txt') }} diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 7d31cb9433b83..1759f35aa5349 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -59,7 +59,7 @@ jobs: if: ${{ matrix.pkg-name != 'pytorch' }} - name: pip wheels cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PYPI_CACHE_DIR }} key: pypi_wheels @@ -107,7 +107,7 @@ jobs: if: ${{ matrix.pkg-name != 'pytorch' }} - name: pip wheels cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PYPI_CACHE_DIR }} key: pypi_wheels