Skip to content

Commit 090ce9a

Browse files
committed
Use PHP 8.4 in Docker environment and the remaining CI jobs
1 parent e5aceb0 commit 090ce9a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.docker/php/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG PHP_VERSION=8.2-cli
3+
ARG PHP_VERSION=8.4-cli
44

55
FROM composer:2 AS composer
66

.github/workflows/coding-standards.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: "shivammathur/setup-php@v2"
2020
with:
2121
coverage: "none"
22-
php-version: "8.3"
22+
php-version: "8.4"
2323

2424
- name: "Install dependencies with Composer"
2525
uses: "ramsey/composer-install@v3"
@@ -28,6 +28,8 @@ jobs:
2828

2929
- name: "Run PHP-CS-Fixer"
3030
run: "vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run"
31+
env:
32+
PHP_CS_FIXER_IGNORE_ENV: 1
3133

3234
rector:
3335
name: "Rector"

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
target: php
66
dockerfile: ./.docker/php/Dockerfile
77
args:
8-
PHP_VERSION: ${PHP_VERSION:-8.3-cli}
8+
PHP_VERSION: ${PHP_VERSION:-8.4-cli}
99
volumes:
1010
- .:/var/www
1111
working_dir: /var/www

0 commit comments

Comments
 (0)