fix: remove trailing OR operators in infra-health-check.yml

This commit is contained in:
Vijay Janapa Reddi
2026-03-06 10:14:56 -05:00
parent a90c8803ff
commit 3234a4fbc0

View File

@@ -93,14 +93,14 @@ jobs:
steps: steps:
- name: 📥 Checkout repository - name: 📥 Checkout repository
if: | if: |
(matrix.platform == 'linux' && inputs.test_linux != false) || (matrix.platform == 'linux' && inputs.test_linux != false)
uses: actions/checkout@v6 uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
- name: 🔑 Log in to GitHub Container Registry - name: 🔑 Log in to GitHub Container Registry
if: | if: |
(matrix.platform == 'linux' && inputs.test_linux != false) || (matrix.platform == 'linux' && inputs.test_linux != false)
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
@@ -109,12 +109,12 @@ jobs:
- name: 🐳 Pull Docker Image - name: 🐳 Pull Docker Image
if: | if: |
(matrix.platform == 'linux' && inputs.test_linux != false) || (matrix.platform == 'linux' && inputs.test_linux != false)
run: docker pull ${{ env.CONTAINER_IMAGE }} run: docker pull ${{ env.CONTAINER_IMAGE }}
- name: 📊 Container Information - name: 📊 Container Information
if: | if: |
(matrix.platform == 'linux' && inputs.test_linux != false) || (matrix.platform == 'linux' && inputs.test_linux != false)
run: | run: |
echo "📊 === CONTAINER INFORMATION ===" echo "📊 === CONTAINER INFORMATION ==="
echo "📋 Platform: ${{ matrix.platform }}" echo "📋 Platform: ${{ matrix.platform }}"