From 550148b4baac787edb6529ddca08e937f4750fec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 14:40:53 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffa36d5..1ae5d6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -320,7 +320,7 @@ jobs: # nodejs.org outage reuses the cache instead of turning this step red. Keyed # on the pin file so a version bump misses and re-fetches automatically. - name: Cache the pinned Node (naude engine) - uses: actions/cache@v4.3.0 + uses: actions/cache@v6.1.0 with: path: ${{ runner.temp }}/clode-nodes key: pinned-node-${{ hashFiles('deps/clode/node-pin.json') }}-${{ runner.os }}-${{ runner.arch }} @@ -478,7 +478,7 @@ jobs: - name: Provision postject (deps/clode) so the fused clode-native can assemble a naude run: npm ci --prefix deps/clode 2>&1 | tail -3 - name: Cache the pinned Node (naude engine — the naude rebuild embeds it) - uses: actions/cache@v4.3.0 + uses: actions/cache@v6.1.0 with: path: ${{ runner.temp }}/clode-nodes key: pinned-node-${{ hashFiles('deps/clode/node-pin.json') }}-${{ runner.os }}-${{ runner.arch }}