Skip to content

Commit bada684

Browse files
committed
Add PHP 8.3
1 parent 43c28b9 commit bada684

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/docker-push.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
php: ['8.2']
16-
unit: ['1.31.1', '1.30.0', '1.29.1']
15+
php: ['8.2', '8.3']
16+
unit: ['1.32.1', '1.32.0', '1.31.1', '1.30.0']
17+
exclude:
18+
- php: '8.3'
19+
unit: '1.31.1'
20+
- php: '8.3'
21+
unit: '1.30.0'
1722
name: PHP ${{ matrix.php }} - Unit ${{ matrix.unit }}
1823
steps:
1924
-

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG UNIT_VERSION=1.31.1
2-
ARG PHP_VERSION=8.2
1+
ARG UNIT_VERSION=1.32.1
2+
ARG PHP_VERSION=8.3
33
FROM unit:${UNIT_VERSION}-php${PHP_VERSION}
44

55
ARG UID=1000

0 commit comments

Comments
 (0)