From 3bda9dda79259e0f586add1b4e554e71fcb9bdc6 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Fri, 23 Dec 2022 15:39:20 +0100 Subject: [PATCH] chore: add ci tests for php 8.2, bump github actions versions --- .github/workflows/build.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index dac704fd..63be435d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 - name: Validate composer.json @@ -19,7 +19,7 @@ jobs: name: PHP-CS-Fixer steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Fix CS uses: docker://oskarstark/php-cs-fixer-ga tests: @@ -34,6 +34,8 @@ jobs: php: '8.0' - description: 'No Symfony specified' php: '8.1' + - description: 'No Symfony specified' + php: '8.2' - description: 'Lowest deps' php: '7.4' composer_option: '--prefer-lowest' @@ -54,9 +56,9 @@ jobs: name: PHP ${{ matrix.php }} tests (${{ matrix.description }}) steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: composer-${{ matrix.php }}-${{ matrix.symfony }}-${{ matrix.composer_option }}