From 14eca8cff7d86334819489ff8af94e4341c966b0 Mon Sep 17 00:00:00 2001 From: Louis Fortunier Date: Fri, 28 Jul 2023 15:25:45 +0200 Subject: [PATCH] Update github workflow for run in 7.4 and 8.2 --- .github/workflows/ci.yml | 8 +++++--- CHANGELOG.md | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 878c714..3fa78dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,13 @@ on: jobs: build_test: runs-on: ubuntu-latest - name: Build and test on php-fpm:${{ matrix.php }}-builder - container: smartbooster/php-fpm:${{ matrix.php }}-builder + name: Build and test on ${{ matrix.image }} + container: ${{ matrix.image }} strategy: matrix: - php: [ 7.4 ] + image: + - smartbooster/php-fpm:7.4-builder + - registry.gitlab.com/pia-production/hosting/docker-php:8.2 steps: - name: Checkout uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ff7c84..d5dc9db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ CHANGELOG for 1.x - Restrict use maximal version `^5.4` of `symfony/security-http` because of changing on `UserPasswordEncoderInterface` in symfony 6 - Add `doctrine/annotations` in the require of composer - Update codes for phpstan issues +- Update github workflow for run in 7.4 and 8.2 ## v1.4.6 - (2023-07-13)