diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index a862cd355af2..91374c88208f 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -15,7 +15,7 @@ runs: shell: bash - name: Check dependency cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 id: cache_dependencies with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} diff --git a/.github/actions/install-playwright/action.yml b/.github/actions/install-playwright/action.yml index ec6ae171e925..0422128daff3 100644 --- a/.github/actions/install-playwright/action.yml +++ b/.github/actions/install-playwright/action.yml @@ -18,7 +18,7 @@ runs: working-directory: ${{ inputs.cwd }} - name: Restore cached playwright binaries - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 id: playwright-cache with: path: | @@ -43,7 +43,7 @@ runs: # Only store cache on develop branch - name: Store cached playwright binaries - uses: actions/cache/save@v5 + uses: actions/cache/save@v6.1.0 if: github.event_name == 'push' && github.ref == 'refs/heads/develop' with: path: | diff --git a/.github/actions/restore-cache/action.yml b/.github/actions/restore-cache/action.yml index 1d5126fbe952..ce5c2abd676e 100644 --- a/.github/actions/restore-cache/action.yml +++ b/.github/actions/restore-cache/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Check dependency cache id: dep-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ inputs.dependency_cache_key }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ad4d82fd9d6..80b921b818bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -121,7 +121,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: Store NX cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6.1.0 # Only cache this per-PR to speed up CI. if: github.event_name == 'pull_request' with: @@ -206,7 +206,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 with: path: | .nx/cache @@ -245,7 +245,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 with: path: | .nx/cache @@ -968,7 +968,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 with: path: | .nx/cache diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 414cd48d9245..c20b80e9f71c 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@v5 + uses: actions/cache@v6.1.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }} @@ -132,7 +132,7 @@ jobs: node-version-file: 'dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/package.json' - name: Restore canary cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }}