diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 597cdfc135..2aca2934e4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: image: [ubuntu-20.04] - php: [8.0.23, 8.1.10, 8.2.1] + php: [8.0.27, 8.1.14, 8.2.1] steps: - name: Build and prepare PHP cache @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: image: [ubuntu-20.04] - php: [8.0.23, 8.1.10, 8.2.1] + php: [8.0.27, 8.1.14, 8.2.1] steps: - uses: actions/checkout@v3 @@ -69,7 +69,7 @@ jobs: fail-fast: false matrix: image: [ubuntu-20.04] - php: [8.0.23, 8.1.10, 8.2.1] + php: [8.0.27, 8.1.14, 8.2.1] steps: - uses: actions/checkout@v3 @@ -107,7 +107,7 @@ jobs: fail-fast: false matrix: image: [ubuntu-20.04] - php: [8.0.23, 8.1.10, 8.2.1] + php: [8.0.27, 8.1.14, 8.2.1] steps: - uses: actions/checkout@v3 @@ -147,7 +147,7 @@ jobs: fail-fast: false matrix: image: [ubuntu-20.04] - php: [8.0.23, 8.1.10, 8.2.1] + php: [8.0.27, 8.1.14, 8.2.1] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/update-php-versions.php b/.github/workflows/update-php-versions.php index 7ff7985665..92e79a6dec 100644 --- a/.github/workflows/update-php-versions.php +++ b/.github/workflows/update-php-versions.php @@ -23,7 +23,8 @@ declare(strict_types=1); const VERSIONS = [ "8.0", - "8.1" + "8.1", + "8.2" ]; $workflowFile = file_get_contents(__DIR__ . '/main.yml');