16 - Check cache url connectivity
Some checks failed
CI / ci (push) Has been cancelled

This commit is contained in:
myrmidex 2026-06-10 18:44:26 +00:00
parent 815683afc8
commit d4d4a9202a

View file

@ -28,9 +28,12 @@ jobs:
steps:
- uses: https://data.forgejo.org/actions/checkout@v4
# Debugging cache miss issue (#16) — check whether ACTIONS_CACHE_URL is injected
# Debugging cache miss issue (#16) — check whether ACTIONS_CACHE_URL is injected and reachable
- name: Debug cache env
run: echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}" && env | grep -i cache || true
run: |
echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}"
env | grep -i cache || true
curl -v --max-time 5 "${ACTIONS_CACHE_URL}" || echo "CURL FAILED: $?"
- name: Cache PHP installation
uses: https://data.forgejo.org/actions/cache@v4