From 967d1bfc2fcbbec0f4065cf6e475b392862ed9d5 Mon Sep 17 00:00:00 2001 From: DragonBe Date: Fri, 5 Jul 2024 19:39:06 +0200 Subject: [PATCH] Fixing wrong param invocation Needed to use the double-quotes and dollar sign for calling the matrix value. --- .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 4b054ee..9183744 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -19,7 +19,7 @@ jobs: - name: Set default PHP version ${{ matrix.php-versions }} uses: shivammathur/setup-php@v2 with: - php-version: '{{ matrix.php-versions }}' + php-version: "${{ matrix.php-versions }}" - name: Display current PHP version run: php --version