From 562b9a9488a54a87184f35df537fb07720bb03ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 05:24:59 +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/build_doc.yml | 2 +- .github/workflows/job_cpu_functional_tests.yml | 4 ++-- .github/workflows/mo.yml | 2 +- .github/workflows/windows.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index 40e12d507cba54..24c0644ce1055d 100644 --- a/.github/workflows/build_doc.yml +++ b/.github/workflows/build_doc.yml @@ -54,7 +54,7 @@ jobs: - name: Cache documentation id: cache_sphinx_docs - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: build/docs/_build/.doctrees key: sphinx-docs-cache diff --git a/.github/workflows/job_cpu_functional_tests.yml b/.github/workflows/job_cpu_functional_tests.yml index b1f2e6bbf08b59..c61dd56c69ed74 100644 --- a/.github/workflows/job_cpu_functional_tests.yml +++ b/.github/workflows/job_cpu_functional_tests.yml @@ -83,7 +83,7 @@ jobs: run: python3 -m pip install -r ${INSTALL_TEST_DIR}/functional_test_utils/layer_tests_summary/requirements.txt - name: Restore tests execution time - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PARALLEL_TEST_CACHE }} key: ${{ runner.os }}-${{ runner.arch }}-tests-functional-cpu-stamp-${{ github.sha }} @@ -101,7 +101,7 @@ jobs: timeout-minutes: 20 - name: Save tests execution time - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: github.ref_name == 'master' with: path: ${{ env.PARALLEL_TEST_CACHE }} diff --git a/.github/workflows/mo.yml b/.github/workflows/mo.yml index f8956969b6a403..5720855255636a 100644 --- a/.github/workflows/mo.yml +++ b/.github/workflows/mo.yml @@ -29,7 +29,7 @@ jobs: python-version: '3.10' - name: Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('tools/mo/requirements*.txt') }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 312bc1a4f7395f..594d8d8f522926 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -763,7 +763,7 @@ jobs: run: python3 -m pip install -r ${{ github.workspace }}\install\tests\functional_test_utils\layer_tests_summary\requirements.txt - name: Restore tests execution time - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ env.PARALLEL_TEST_CACHE }} key: ${{ runner.os }}-tests-functional-cpu-stamp-${{ github.sha }} @@ -777,7 +777,7 @@ jobs: timeout-minutes: 60 - name: Save tests execution time - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: github.ref_name == 'master' with: path: ${{ env.PARALLEL_TEST_CACHE }}