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 e25ff48ca31128..a016ea6dae9f4c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -820,7 +820,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 }} @@ -834,7 +834,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 }}