From 3234a4fbc093fd115fb61446af6ff1820523100e Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Fri, 6 Mar 2026 10:14:56 -0500 Subject: [PATCH] fix: remove trailing OR operators in infra-health-check.yml --- .github/workflows/infra-health-check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/infra-health-check.yml b/.github/workflows/infra-health-check.yml index 4b2c53f09..546b1b48f 100644 --- a/.github/workflows/infra-health-check.yml +++ b/.github/workflows/infra-health-check.yml @@ -93,14 +93,14 @@ jobs: steps: - name: 📥 Checkout repository if: | - (matrix.platform == 'linux' && inputs.test_linux != false) || + (matrix.platform == 'linux' && inputs.test_linux != false) uses: actions/checkout@v6 with: fetch-depth: 0 - name: 🔑 Log in to GitHub Container Registry if: | - (matrix.platform == 'linux' && inputs.test_linux != false) || + (matrix.platform == 'linux' && inputs.test_linux != false) uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} @@ -109,12 +109,12 @@ jobs: - name: 🐳 Pull Docker Image if: | - (matrix.platform == 'linux' && inputs.test_linux != false) || + (matrix.platform == 'linux' && inputs.test_linux != false) run: docker pull ${{ env.CONTAINER_IMAGE }} - name: 📊 Container Information if: | - (matrix.platform == 'linux' && inputs.test_linux != false) || + (matrix.platform == 'linux' && inputs.test_linux != false) run: | echo "📊 === CONTAINER INFORMATION ===" echo "📋 Platform: ${{ matrix.platform }}"