From 360284184eb40145f4c3f4d5b013480e6f2b68f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Tue, 17 Sep 2024 08:03:12 +0200 Subject: [PATCH] fix test.yml workflow syntax issue --- .github/workflows/test.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb6e762b..576a49a9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,13 +57,13 @@ jobs: path: | result/himalaya.tgz result/himalaya.zip - - name: Save Cargo home - id: cache-cargo-home - uses: actions/cache/save@v4 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ + - name: Save Cargo home + uses: actions/cache/save@v4 + id: cache-cargo-home key: ${{ steps.cache-cargo-home.outputs.cache-primary-key }} + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/