Skip to content

Commit 9c0816b

Browse files
committed
Move all tests to php 8.3 and remove testing for PHP 7.4 as it is EOL.
1 parent 6337ffd commit 9c0816b

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/blackbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup PHP
2323
uses: shivammathur/setup-php@v2
2424
with:
25-
php-version: 8.2
25+
php-version: 8.3
2626
coverage: none
2727

2828
- name: Install dependencies

.github/workflows/checks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
2222
with:
23-
php-version: 8.2
23+
php-version: 8.3
2424
coverage: none
2525

2626
- name: Install dependencies
@@ -34,7 +34,6 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
php:
37-
- "7.4"
3837
- "8.0"
3938
- "8.1"
4039
- "8.2"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ ubuntu-latest ]
12-
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
12+
php: [ 8.0, 8.1, 8.2, 8.3 ]
1313
dependency-version: [ prefer-lowest, prefer-stable ]
1414
redis-version: [ 5, 6, 7 ]
1515

php-fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.1-fpm
1+
FROM php:8.3-fpm
22

33
RUN pecl install redis && docker-php-ext-enable redis
44
RUN pecl install apcu && docker-php-ext-enable apcu

0 commit comments

Comments
 (0)