Skip to content

Commit 9207a22

Browse files
committed
Update PHP version to 8.2 in Docker and project files
- Upgrade PHP version from 8.1 to 8.2 in Dockerfile, .phprc, composer.json, and docker-compose.yml. - Modify required packages in composer.lock for compatibility with PHP 8.2. - Update GitHub Actions to use the latest checkout action version (v4).
1 parent f55d8bd commit 9207a22

File tree

6 files changed

+124
-124
lines changed

6 files changed

+124
-124
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v1
10+
uses: actions/checkout@v4
1111

1212
- name: Run tests on docker compose
1313
run: docker compose up --abort-on-container-exit

.phprc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
php8.1
1+
php8.2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/Codeception/VisualCeption",
66
"license": "MIT",
77
"require": {
8-
"php": "^8.1",
8+
"php": "^8.2",
99
"ext-imagick": "*",
1010
"ext-mbstring": "*",
1111
"ext-zip": "*",

0 commit comments

Comments
 (0)