update cache
Some checks failed
Cargo / check (push) Has been cancelled
Cargo / test (push) Has been cancelled
Cargo / build (push) Has been cancelled

This commit is contained in:
2025-07-18 12:19:53 +01:00
parent 2dccdb2735
commit 47c47029c6

View File

@ -11,13 +11,13 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: Cargo target cache
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}
${{ runner.os }}-cargo-target
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build project
uses: actions-rs/cargo@v1
with: