diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f7dfd31..222a77c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,7 @@ jobs: - id: kernel-submodule run: echo "ref=$(git ls-tree HEAD | awk '$4 == "agnos-kernel-sdm845"' | awk '{print $3}')" >> "$GITHUB_OUTPUT" - - uses: actions/cache/restore@v5 + - uses: actions/cache/restore@v4 id: restore-cache with: key: kernel-${{ steps.kernel-submodule.outputs.ref }} @@ -34,7 +34,7 @@ jobs: - run: ./build_kernel.sh - - uses: actions/cache/save@v5 + - uses: actions/cache/save@v4 if: always() with: key: ${{ steps.restore-cache.outputs.cache-primary-key }}