Skip to content

Commit cf31752

Browse files
chore(deps): update actions/cache action to v5.0.5
1 parent 69fba70 commit cf31752

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
env:
2424
CACHE_KEY_PREFIX: deps-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}
2525
CACHE_KEY_DEPS: ${{ hashFiles('uv.lock', '.pre-commit-config.yaml') }}
26-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
26+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2727
with:
2828
path: |
2929
~/.cache/pre-commit

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
id: restore-cache-cargo
5353
env:
5454
CACHE_KEY_PREFIX: cargo-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}
55-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
55+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5656
with:
5757
path: ${{ env.CARGO_CACHE_PATHS }}
5858
key: ${{ env.CACHE_KEY_PREFIX }}-${{ hashFiles('**/Cargo.lock') }}-${{ github.run_id }}-${{ github.run_attempt }}
@@ -64,7 +64,7 @@ jobs:
6464
env:
6565
CACHE_KEY_PREFIX: venv-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}-py${{ env.PYTHON_VERSION }}
6666
CACHE_KEY_DEPS: ${{ hashFiles('uv.lock') }}
67-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
67+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
6868
with:
6969
path: |
7070
~/.local/share/uv
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: save-cache-cargo
9292
if: always()
93-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
93+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
9494
with:
9595
path: ${{ env.CARGO_CACHE_PATHS }}
9696
key: ${{ steps.restore-cache-cargo.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)