From 7e40384f7a13436c1a30f2867e84e95cd639e940 Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Wed, 6 Sep 2023 10:14:30 +0200 Subject: [PATCH] update workflow --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e9d6bd8..c9a5ddc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: php-version: - - "7.4" + - "8.2" steps: - name: "Checkout" @@ -24,7 +24,7 @@ jobs: tools: "cs2pr" - name: "Install dependencies with Composer" - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" - name: "Run PHP_CodeSniffer" run: "vendor/bin/phpcs -n -s --report=checkstyle | cs2pr" @@ -36,9 +36,9 @@ jobs: strategy: matrix: php-version: - - "7.4" - "8.0" - "8.1" + - "8.2" steps: - name: "Checkout" @@ -50,8 +50,7 @@ jobs: php-version: "${{ matrix.php-version }}" - name: "Install dependencies with Composer" - uses: "ramsey/composer-install@v1" - + uses: "ramsey/composer-install@v2" - name: "Run PHPUnit" run: "vendor/bin/phpunit"