From d696c202df499de0bcc80acde82baeb5440a99fd Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Tue, 22 Jul 2025 18:12:20 +0700 Subject: [PATCH] fix(action): missing project directory path for failure inspection (#3825) This one is missing. First seen here: https://github.com/getsentry/uptime-checker/actions/runs/16429015462/job/46426515654 --- action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yaml b/action.yaml index 8da5c29..40b7628 100644 --- a/action.yaml +++ b/action.yaml @@ -174,6 +174,7 @@ runs: shell: bash run: | echo "::group::Inspect failure - docker compose ps" + cd ${{ github.action_path }} docker compose ps echo "::endgroup::" echo "::group::Inspect failure - docker compose logs"