Debug-action-cache New! ⭐

Insert a step immediately after your cache restore:

#!/bin/bash # Debug Action Cache Script set -e CACHE_PATH="$1" EXPECTED_HASH="$2" debug-action-cache

echo "=== DEBUG ACTION CACHE ===" echo "Current time: $(date)" echo "Cache path: $CACHE_PATH" echo "Expected lockfile hash: $EXPECTED_HASH" Insert a step immediately after your cache restore: #