From f5a7f42345701ffe40be2a6095e68d70a086bd84 Mon Sep 17 00:00:00 2001 From: Thierry Bela Date: Fri, 12 Aug 2022 11:05:15 -0400 Subject: [PATCH] #124 change ci php version --- .github/workflows/php.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 413f9875..38f081a3 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -14,6 +14,11 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install dependencies + uses: php-actions/composer@v6 + with: + php_version: "5.6" + - name: Validate composer.json and composer.lock run: composer validate --strict @@ -22,7 +27,6 @@ jobs: uses: actions/cache@v2 with: path: vendor - php-version: '5.6' key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php-