diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94dc3db3942d..0c2b6339b0d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -159,7 +159,7 @@ jobs: head: ${{ env.HEAD_COMMIT }} - name: NX cache - uses: actions/cache@v4 + uses: actions/cache@v5 # Disable cache when: # - on release branches # - when PR has `ci-skip-cache` label or on nightly builds @@ -881,7 +881,7 @@ jobs: with: dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: NX cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .nxcache key: nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }} @@ -892,7 +892,7 @@ jobs: run: yarn build:tarball - name: Stores tarballs in cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ github.workspace }}/packages/*/*.tgz key: ${{ env.BUILD_CACHE_TARBALL_KEY }} @@ -959,7 +959,7 @@ jobs: dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Restore tarball cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: restore-tarball-cache with: path: ${{ github.workspace }}/packages/*/*.tgz @@ -1084,7 +1084,7 @@ jobs: dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Restore tarball cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: restore-tarball-cache with: path: ${{ github.workspace }}/packages/*/*.tgz diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 1e71125ddad2..95f6f19ae6db 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -39,7 +39,7 @@ jobs: with: node-version-file: 'package.json' - name: Check canary cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }} @@ -130,7 +130,7 @@ jobs: node-version-file: 'dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/package.json' - name: Restore canary cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }} diff --git a/.github/workflows/flaky-test-detector.yml b/.github/workflows/flaky-test-detector.yml index bb3169ecb410..59ce1bca3c40 100644 --- a/.github/workflows/flaky-test-detector.yml +++ b/.github/workflows/flaky-test-detector.yml @@ -40,7 +40,7 @@ jobs: run: yarn install --ignore-engines --frozen-lockfile - name: NX cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .nxcache key: nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }}