Skip to content

Commit 46d9b5a

Browse files
Merge pull request #127 from RonasIT/dpankratov/update-php-version
feat: use php 8.4 for local development and environments
2 parents 0de2334 + 49b519d commit 46d9b5a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/run-tests-with-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
services:
2323
postgres:
24-
image: postgres
24+
image: postgres:17.4
2525
env:
2626
POSTGRES_PASSWORD: ""
2727
POSTGRES_USER: forge
@@ -35,7 +35,7 @@ jobs:
3535
--health-timeout 5s
3636
--health-retries 5
3737
redis:
38-
image: redis:7.2
38+
image: redis:7.4
3939
env:
4040
ALLOW_EMPTY_PASSWORD: "yes"
4141
ports:
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- uses: shivammathur/setup-php@v2
5151
with:
52-
php-version: '8.3'
52+
php-version: '8.4'
5353
extensions: pgsql
5454
- uses: actions/checkout@v3
5555
- name: Install Dependencies

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM webdevops/php-nginx:8.3-alpine
1+
FROM webdevops/php-nginx:8.4-alpine
22

33
ENV WEB_DOCUMENT_ROOT /app/public
44
ENV WEB_DOCUMENT_INDEX index.php

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22

33
nginx:
4-
image: ghcr.io/ronasit/php-nginx-dev:8.3
4+
image: ghcr.io/ronasit/php-nginx-dev:8.4
55
working_dir: /app
66
command: >
77
bash -c "chmod +x ./docker/entrypoint.sh && ./docker/entrypoint.sh && cd /opt/docker && supervisord"
@@ -50,7 +50,7 @@ services:
5050
- 6379:6379
5151

5252
php:
53-
image: webdevops/php:8.3-alpine
53+
image: webdevops/php:8.4-alpine
5454
working_dir: /app
5555
volumes:
5656
- ./:/app

0 commit comments

Comments
 (0)