From 5632789f95a5a24272df80d4bc8a3f234c54c761 Mon Sep 17 00:00:00 2001 From: DragonBe Date: Fri, 5 Jul 2024 19:22:35 +0200 Subject: [PATCH] Fixing workflow runner for PHP command There seems to be an issue with the PHP binary lookup in the worker. Setting it more explicit. --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b7975b5..9b7179d 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -20,7 +20,7 @@ jobs: run: sudo ln -snf /usr/bin/php${{ matrix.php-versions }} /usr/bin/php - name: Display current PHP version - run: php --version + run: /usr/bin/php --version - uses: actions/checkout@v2