From a305b08e5f9ed6f100d3a0b9893ccaea9a2d61d5 Mon Sep 17 00:00:00 2001 From: Burhan Nasir Date: Thu, 16 Jan 2025 12:22:51 +0500 Subject: [PATCH] Update lint --- .github/workflows/lint.yml | 2 +- .github/workflows/php-compatibility.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8132f5d..d333e49 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -56,7 +56,7 @@ jobs: - name: PHP version uses: shivammathur/setup-php@v2 with: - php-version: '7.4' + php-version: '8.2' coverage: none - name: composer install diff --git a/.github/workflows/php-compatibility.yml b/.github/workflows/php-compatibility.yml index 69ceea1..4523a9f 100644 --- a/.github/workflows/php-compatibility.yml +++ b/.github/workflows/php-compatibility.yml @@ -1,7 +1,7 @@ name: PHP Compatibility env: - COMPOSER_VERSION: "1" + COMPOSER_VERSION: "2" COMPOSER_CACHE: "${{ github.workspace }}/.composer-cache" on: @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] + php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] steps: - name: Checkout @@ -41,9 +41,9 @@ jobs: - name: Set PHP version uses: shivammathur/setup-php@v2 with: - php-version: '7.4' + php-version: '8.2' coverage: none - tools: prestissimo, composer:v1 + tools: prestissimo, composer:v2 - name: Install dependencies run: composer install