From 992a4177f61cfb28876f87b9498130c92ac3025c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:01:50 +0000 Subject: [PATCH] Update actions/cache action to v3.5.0 --- .github/workflows/docker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index bf9a453..5abf34b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -30,7 +30,7 @@ jobs: components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v3.0.7 + uses: actions/cache@v3.5.0 with: path: ~/.cargo/registry key: docker-registry-${{ hashFiles('**/Cargo.lock') }} @@ -39,7 +39,7 @@ jobs: docker- - name: Cache cargo index - uses: actions/cache@v3.0.7 + uses: actions/cache@v3.5.0 with: path: ~/.cargo/git key: docker-index-${{ hashFiles('**/Cargo.lock') }} @@ -52,7 +52,7 @@ jobs: head -c16 /dev/urandom > src/secret.key - name: Cache cargo build - uses: actions/cache@v3.0.7 + uses: actions/cache@v3.5.0 with: path: target key: docker-build-${{ hashFiles('**/Cargo.lock') }}