Fix: Update cache key to include Cargo.toml hash

This forces cache invalidation when version changes

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-08-10 04:25:29 +09:00
parent 0e1dff12c2
commit 3af175f4ed

View File

@@ -56,9 +56,9 @@ jobs:
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ./bin path: ./bin
key: ailog-bin-${{ runner.os }} key: ailog-bin-${{ runner.os }}-v${{ hashFiles('Cargo.toml') }}
restore-keys: | restore-keys: |
ailog-bin-${{ runner.os }} ailog-bin-${{ runner.os }}-v
- name: Setup ailog binary - name: Setup ailog binary
run: | run: |