We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12834d1 commit 4bc3478Copy full SHA for 4bc3478
1 file changed
.github/workflows/test.yml
@@ -46,14 +46,18 @@ jobs:
46
with:
47
version: 0.15.2
48
49
+ - name: Get Zig version
50
+ id: zig-ver
51
+ run: echo "version=$(zig version)" >> $GITHUB_OUTPUT
52
+
53
- name: Cache Zig dependencies
54
uses: actions/cache@v4
55
56
path: |
57
~/.cache/zig
58
~/AppData/Local/zig
59
~/Library/Caches/zig
- key: ${{ runner.os }}-zig-deps-${{ hashFiles('.zigversion') }}
60
+ key: ${{ runner.os }}-zig-deps-${{ steps.zig-ver.outputs.version }}
61
restore-keys: |
62
${{ runner.os }}-zig-deps-
63
0 commit comments