Skip to content

Commit cc2ba6a

Browse files
committed
Move from 7.3 to 7.4
1 parent 3a52f7e commit cc2ba6a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
strategy:
121121
fail-fast: false
122122
matrix:
123-
php: ['7.3', '8.0'] # same as in the container
123+
php: ['7.4', '8.0'] # same as in the container
124124
symfony_version: ['4.4.*', '5.2.*']
125125
dependencies: ['--prefer-lowest', '--prefer-dist']
126126
rdkafka_action: ['exclude-group', 'group']

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ version: '2'
33
services:
44
dev:
55
# when image publishing gets sorted:
6-
# image: enqueue/dev:${PHP_VERSION}
6+
# image: enqueue/dev:${PHP_VERSION:-7.4}
77
build:
88
context: docker
99
args:
10-
PHP_VERSION: "${PHP_VERSION:-7.3}"
10+
PHP_VERSION: "${PHP_VERSION:-7.4}"
1111
depends_on:
1212
- rabbitmq
1313
- mysql

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PHP_VERSION=7.3
1+
ARG PHP_VERSION=7.4
22
FROM makasim/nginx-php-fpm:${PHP_VERSION}-all-exts
33

44
ARG PHP_VERSION

0 commit comments

Comments
 (0)