From 73cb60b90a6a95d1aef494bcd1500597a9cc1535 Mon Sep 17 00:00:00 2001 From: Roman Date: Tue, 26 May 2026 14:30:04 +0800 Subject: [PATCH] fix: remove cache to avoid compile issues --- .github/workflows/fuzz-afl.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/fuzz-afl.yml b/.github/workflows/fuzz-afl.yml index 00906e2..16a6a7f 100644 --- a/.github/workflows/fuzz-afl.yml +++ b/.github/workflows/fuzz-afl.yml @@ -77,14 +77,6 @@ jobs: - name: Install Rust (stable) uses: dtolnay/rust-toolchain@stable - - name: Cache fuzz/target - uses: actions/cache@v4 - with: - path: fuzz/target - key: afl-fuzz-target-${{ matrix.target }}-${{ hashFiles('fuzz/Cargo.lock') }} - restore-keys: | - afl-fuzz-target-${{ matrix.target }}- - - name: Install cargo-afl run: cargo install cargo-afl --locked