From a3eb4060e70f4102105af19170055ca4a6004682 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 1 May 2026 17:22:10 -0700 Subject: [PATCH] fix: correct YAML syntax in Dremio CI workflow Use multi-line run command with pipe operator (|) instead of inline command with || operator to avoid YAML parsing errors. The || operator was causing 'mapping values are not allowed here' syntax errors in the YAML parser. --- .github/workflows/s3-tables-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/s3-tables-tests.yml b/.github/workflows/s3-tables-tests.yml index 34f8a0318..d4c0de068 100644 --- a/.github/workflows/s3-tables-tests.yml +++ b/.github/workflows/s3-tables-tests.yml @@ -213,7 +213,8 @@ jobs: uses: docker/setup-buildx-action@v4 - name: Pre-pull Dremio image - run: docker pull dremio/dremio:latest || echo "Warning: Failed to pre-pull Dremio image, will try at runtime" + run: | + docker pull dremio/dremio:latest || echo 'Warning: Failed to pre-pull Dremio image, will try at runtime' continue-on-error: true - name: Run go mod tidy