Skip to content

Commit

Permalink
Use PHP 8.4 in Docker environment and the remaining CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Nov 24, 2024
1 parent e5aceb0 commit 090ce9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG PHP_VERSION=8.2-cli
ARG PHP_VERSION=8.4-cli

FROM composer:2 AS composer

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "8.3"
php-version: "8.4"

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

- name: "Run PHP-CS-Fixer"
run: "vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run"
env:
PHP_CS_FIXER_IGNORE_ENV: 1

rector:
name: "Rector"
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
target: php
dockerfile: ./.docker/php/Dockerfile
args:
PHP_VERSION: ${PHP_VERSION:-8.3-cli}
PHP_VERSION: ${PHP_VERSION:-8.4-cli}
volumes:
- .:/var/www
working_dir: /var/www
Expand Down

0 comments on commit 090ce9a

Please sign in to comment.