diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index 8baa49922369cd..7e9460dfb4bc00 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/linux.yml b/.github/workflows/linux.yml index 900d29a34d7fd7..8463e9279e8bf9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1232,7 +1232,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 }}-tests-functional-cpu-stamp-${{ github.sha }} @@ -1246,7 +1246,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/linux_arm64.yml b/.github/workflows/linux_arm64.yml index a611f59db5a55c..9777fe74e05390 100644 --- a/.github/workflows/linux_arm64.yml +++ b/.github/workflows/linux_arm64.yml @@ -1147,7 +1147,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 }} @@ -1161,7 +1161,7 @@ jobs: timeout-minutes: 40 - 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/linux_conditional_compilation.yml b/.github/workflows/linux_conditional_compilation.yml index c5d09112d2e7e7..bf79d888946ddb 100644 --- a/.github/workflows/linux_conditional_compilation.yml +++ b/.github/workflows/linux_conditional_compilation.yml @@ -357,7 +357,7 @@ jobs: run: python3 -m pip install -r ${INSTALL_TEST_DIR}/src/tests/test_utils/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 }} diff --git a/.github/workflows/mo.yml b/.github/workflows/mo.yml index 69be4df6bf8fbc..6ee325a73c401b 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 353a38666d7862..cbae93ad697f24 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -728,7 +728,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 }} @@ -742,7 +742,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 }}