From 69cbef40e639d8b9ffe2f3526cc34db7dda205de Mon Sep 17 00:00:00 2001 From: Nadyita Date: Mon, 19 Feb 2024 16:33:35 +0100 Subject: [PATCH] Force specific php version --- .github/workflows/php.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 2067b16..025714c 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -18,6 +18,13 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Setup PHP + id: setup-php + uses: shivammathur/setup-php@v2 + with: + php-version: '8.1.17' + + - name: Validate composer.json and composer.lock run: composer validate --strict