From a7b7b1ea67088eae738bcee75698e3599ec4248a Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 4 Feb 2025 14:43:09 -0800 Subject: [PATCH] clarify --- .github/actions/wait-for-as-server-to-start/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/wait-for-as-server-to-start/action.yml b/.github/actions/wait-for-as-server-to-start/action.yml index d227b6f14..d3e35e802 100644 --- a/.github/actions/wait-for-as-server-to-start/action.yml +++ b/.github/actions/wait-for-as-server-to-start/action.yml @@ -18,6 +18,6 @@ runs: - name: Wait for EE server to start # Composite actions doesn't support step-level timeout-minutes, so we use timeout command. # Call bash shell explicitly since timeout uses "sh" shell by default, for some reason - run: docker exec ${{ inputs.container-name }} timeout 30 bash wait-for-as-server-to-start.bash + run: docker exec ${{ inputs.container-name }} timeout 30s bash wait-for-as-server-to-start.bash working-directory: .github/workflows/docker-build-context shell: bash