From 3e40a76bc4a9dd4b55f885084a0f8b1e47c583d4 Mon Sep 17 00:00:00 2001 From: Benjamin Pollack Date: Wed, 18 Feb 2026 21:02:36 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20bump=20actions/cache=20v3=E2=86=92v4=20an?= =?UTF-8?q?d=20actions/github-script=20v6=E2=86=92v7=20in=20rust-cache?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rust-cache/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-cache/action.yml b/.github/workflows/rust-cache/action.yml index cc0d676..95da0ce 100644 --- a/.github/workflows/rust-cache/action.yml +++ b/.github/workflows/rust-cache/action.yml @@ -6,7 +6,7 @@ runs: using: "composite" steps: - name: configure sccache - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); @@ -14,7 +14,7 @@ runs: core.exportVariable('SCCACHE_GHA_CACHE_TO', 'sccache-${{ runner.os }}-${{ github.ref_name }}'); core.exportVariable('SCCACHE_GHA_CACHE_FROM', 'sccache-${{ runner.os }}-main,sccache-${{ runner.os }}-'); - name: cargo registry cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }} restore-keys: |