From d4d4a9202a538bcbc5aa120f3e934f7fffa303ae Mon Sep 17 00:00:00 2001 From: myrmidex Date: Wed, 10 Jun 2026 18:44:26 +0000 Subject: [PATCH] 16 - Check cache url connectivity --- .forgejo/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 8bb57fd..45d4082 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -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