Skip to content

Commit 18b2ae6

Browse files
fatbobmanclaude
andcommitted
fix: Use github.sha instead of hashFiles in container workflow
Replace hashFiles('**/Package.resolved') with github.sha for cache key as hashFiles doesn't work properly in Docker container environment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c45f346 commit 18b2ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/linux-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
path: |
2929
.build
3030
~/.cache/org.swift.swiftpm
31-
key: ${{ runner.os }}-swift-6.0-${{ hashFiles('**/Package.resolved') }}
31+
key: ${{ runner.os }}-swift-6.0-${{ github.sha }}
3232
restore-keys: |
3333
${{ runner.os }}-swift-6.0-
3434
${{ runner.os }}-swift-

0 commit comments

Comments
 (0)