From 7249a256932ecb9c3b03db1472e41681d812da7b Mon Sep 17 00:00:00 2001 From: Asis Pattisahusiwa <79239132+asispts@users.noreply.github.com> Date: Tue, 28 Jan 2025 21:01:13 +0700 Subject: [PATCH] Update comment and fix yaml --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 79ce1e768a..0f744a2557 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -94,12 +94,12 @@ jobs: uses: actions/checkout@v4 # This is a temporary solution. - # Once ubuntu-latest includes the latest libxml2 version, this step can be removed. + # Once ubuntu-latest includes libxml2 >= 2.12.0, this and the following steps can be removed. - name: Install homebrew if: ${{ matrix.os == 'ubuntu-latest' && matrix.php == '8.4' }} run: | export HOMEBREW_NO_ANALYTICS=1 - echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH + echo "/home/linuxbrew/.linuxbrew/bin" >> "$GITHUB_PATH" /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - name: Install latest libxml2 on PHP 8.4 (linux only) if: ${{ matrix.os == 'ubuntu-latest' && matrix.php == '8.4' }}