From 5c312cb15bb7fc3e63f21ade598308cea51b1cd1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 08:08:19 +0000 Subject: [PATCH] chore(actions): update github actions to v6 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21333bc638..236fa6d9b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,7 +162,7 @@ jobs: # actually be written; trusted PRs keep their reusable cache without crossing trust boundaries. - name: Restore node_modules cache id: node-modules-cache - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | node_modules @@ -190,7 +190,7 @@ jobs: # broken/partial node_modules can never get written to the cache for a future run to inherit. - name: Save node_modules cache if: ${{ steps.node-modules-cache.outputs.cache-hit != 'true' }} - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | node_modules @@ -374,7 +374,7 @@ jobs: - name: Restore review-enrichment node_modules cache id: rees-node-modules-cache if: ${{ github.event_name == 'push' || needs.changes.outputs.rees == 'true' }} - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: review-enrichment/node_modules # Same Node-version and manifest guards as the root cache key above -- REES runs on the same @@ -385,7 +385,7 @@ jobs: run: npm run rees:install - name: Save review-enrichment node_modules cache if: ${{ (github.event_name == 'push' || needs.changes.outputs.rees == 'true') && steps.rees-node-modules-cache.outputs.cache-hit != 'true' }} - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: review-enrichment/node_modules key: ${{ steps.rees-node-modules-cache.outputs.cache-primary-key }}